diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-09-21 03:12:19 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-09-21 03:12:19 (GMT) |
commit | 26bd84ec3625c825c04228b76dd37cd5e75fb36b (patch) | |
tree | c326cf54a41cbe02c8d77fe7347d425bb706002a | |
parent | aa469e92bf79e962ae3e0f2634237c75e6108e7c (diff) | |
download | Qt-26bd84ec3625c825c04228b76dd37cd5e75fb36b.zip Qt-26bd84ec3625c825c04228b76dd37cd5e75fb36b.tar.gz Qt-26bd84ec3625c825c04228b76dd37cd5e75fb36b.tar.bz2 |
Add a rotated flickr-mobile version
-rw-r--r-- | demos/declarative/flickr/flickr-mobile-90.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/demos/declarative/flickr/flickr-mobile-90.qml b/demos/declarative/flickr/flickr-mobile-90.qml new file mode 100644 index 0000000..259ff10 --- /dev/null +++ b/demos/declarative/flickr/flickr-mobile-90.qml @@ -0,0 +1,10 @@ +import Qt 4.6 + +Item { + width: 480; height: 320 + + Loader { + y: 320; rotation: -90 + source: "flickr-mobile.qml" + } +} |