diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-09 00:39:17 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-09 00:39:17 (GMT) |
commit | 41893d3259a477e424667c5400617aae3a7a45a1 (patch) | |
tree | 84290efd91abe319b8c87917102349be339e3e3f /examples/declarative | |
parent | 411404e5126936d691d5bb2b77d1754902fab5e0 (diff) | |
download | Qt-41893d3259a477e424667c5400617aae3a7a45a1.zip Qt-41893d3259a477e424667c5400617aae3a7a45a1.tar.gz Qt-41893d3259a477e424667c5400617aae3a7a45a1.tar.bz2 |
self-doc
Diffstat (limited to 'examples/declarative')
-rw-r--r-- | examples/declarative/gestures/experimental-gestures.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/declarative/gestures/experimental-gestures.qml b/examples/declarative/gestures/experimental-gestures.qml index 5f904aa..cb190ea 100644 --- a/examples/declarative/gestures/experimental-gestures.qml +++ b/examples/declarative/gestures/experimental-gestures.qml @@ -5,6 +5,14 @@ import Qt.labs.gestures 1.0 Rectangle { id: rect + width: 320 + height: 180 + + Text { + anchors.centerIn: parent + text: "Tap / TapAndHold / Pan / Pinch / Swipe\nOnly works on platforms with Touch support." + horizontalAlignment: Text.Center + } GestureArea { anchors.fill: parent |