From 5582606d365923659010eb4997723c699f128f56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20H=C3=B6ltt=C3=A4?= Date: Thu, 20 Dec 2018 14:36:10 +0100 Subject: Add descriptions to demo app examples. Also some tweaks. --- DemoApplication/pages/Page6.qml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'DemoApplication/pages/Page6.qml') 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 -- cgit v1.2.3