diff options
Diffstat (limited to 'src/main.qml')
-rw-r--r-- | src/main.qml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/main.qml b/src/main.qml index f04edb4..12ca9de 100644 --- a/src/main.qml +++ b/src/main.qml @@ -4,11 +4,15 @@ import QtPositioning 5.15 import QtLocation 5.15 Application { - id: app - - centerColor: "#003ee9" + centerColor: "#6e90e9" outerColor: "#00bc1b" + id: app + Item { + id: colours + property string primary: "#0056d7" + property string primaryUnselected: "#3274d7" + } Plugin { id: mapProvider name: "osm" @@ -16,12 +20,13 @@ Application { LayerStack { id: pageStack anchors.fill: parent - firstPage: mainmapview + firstPage: mainMapView } Component { - id: mainmapview - MainMapView {} + id: mainMapView + MainMapView { + } } Component { id: settingsPage |