summaryrefslogtreecommitdiffstats
path: root/examples/tutorial/SlideDeckRotated.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tutorial/SlideDeckRotated.qml')
-rw-r--r--examples/tutorial/SlideDeckRotated.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/tutorial/SlideDeckRotated.qml b/examples/tutorial/SlideDeckRotated.qml
new file mode 100644
index 0000000..a688fc9
--- /dev/null
+++ b/examples/tutorial/SlideDeckRotated.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.0
+
+Item
+{
+ height: 640
+ width: 360
+ Item {
+ rotation: 90
+ SlideDeck {
+ y: -360
+ width: 640
+ height: 360
+ }
+ }
+}