summaryrefslogtreecommitdiff
path: root/src/main.qml
blob: 12ca9deb40c3396bab4ba4065d3e103c27c9c37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import QtQuick 2.0
import org.asteroid.controls 1.0
import QtPositioning 5.15
import QtLocation 5.15

Application {
    centerColor: "#6e90e9"
    outerColor: "#00bc1b"
    id: app

    Item {
        id: colours
        property string primary: "#0056d7"
        property string primaryUnselected: "#3274d7"
    }
    Plugin {
        id: mapProvider
        name: "osm"
    }
    LayerStack {
        id: pageStack
        anchors.fill: parent
        firstPage: mainMapView
    }

    Component {
        id: mainMapView
        MainMapView {
        }
    }
    Component {
        id: settingsPage
        SettingsPage {}
    }
}