aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/pages/Page6.qml
diff options
context:
space:
mode:
authorAntti Hölttä <AHoelttae@luxoft.com>2018-12-20 14:36:10 +0100
committerAntti Hölttä <AHoelttae@luxoft.com>2019-03-18 16:38:00 +0100
commit5582606d365923659010eb4997723c699f128f56 (patch)
tree2fc7c318916068b23b2d98d6f9e1bc692a95d553 /DemoApplication/pages/Page6.qml
parentc0dfb280873cc3443d0e0874bf247b95520d763d (diff)
Add descriptions to demo app examples. Also some tweaks.
Diffstat (limited to 'DemoApplication/pages/Page6.qml')
-rw-r--r--DemoApplication/pages/Page6.qml15
1 files changed, 14 insertions, 1 deletions
diff --git a/DemoApplication/pages/Page6.qml b/DemoApplication/pages/Page6.qml
index ece82ba..efb5996 100644
--- a/DemoApplication/pages/Page6.qml
+++ b/DemoApplication/pages/Page6.qml
@@ -10,6 +10,16 @@ Item {
width: parent.width
height: parent.height
+ Text {
+ id: text
+ text: "CursorNavigation allows navigation in a simple 4-way, or a completely free 360 degree manner. The 4 way navigation is useful for traditional, rectangular and structured UIs, however, the example here works best when using a controller that allows moving to any direction (eg. analog stick)."
+ anchors.top: parent.top
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.margins: 10
+ wrapMode: Text.WordWrap
+ }
+
Timer {
id: cooldownTimer
interval: 500
@@ -54,7 +64,10 @@ Item {
Map {
id: map
- anchors.fill: parent
+ anchors.top: text.bottom
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.bottom: parent.bottom
plugin: mapPlugin;
center: locationOslo
zoomLevel: 13