From cf634a3ed47e756d70f0228044ebd0be794886f9 Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Sat, 22 Oct 2022 14:35:59 +0100 Subject: Add a settings page --- src/main.qml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/main.qml') diff --git a/src/main.qml b/src/main.qml index 5442abc..693e9d4 100644 --- a/src/main.qml +++ b/src/main.qml @@ -9,17 +9,12 @@ Application { centerColor: "#9800A6" outerColor: "#0C0009" - Label { - text: "Map Data from OpenStreetMap" - anchors.centerIn: parent - z: 0 - } Plugin { id: mapProvider name: "osm" } LayerStack { - id: pagestack + id: pageStack anchors.fill: parent firstPage: mainmapview } @@ -28,4 +23,8 @@ Application { id: mainmapview MainMapView {} } + Component { + id: settingsPage + SettingsPage {} + } } -- cgit v1.2.3-54-g00ecf