-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.qml
More file actions
43 lines (38 loc) · 913 Bytes
/
Main.qml
File metadata and controls
43 lines (38 loc) · 913 Bytes
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
36
37
38
39
40
41
42
43
import QtQuick 2.2
import QtQuick.Window 2.2
import Ubuntu.Components 1.1
import "qml/Page"
import "js/MainController.js" as MainController
Window {
id: mainWindow
visible: true
property string version: "1.1"
Component.onCompleted: {
MainController.MainController.checkData(version);
}
MainView {
objectName: "mainView"
id: mainView
applicationName: "fixelapp.inglebard"
automaticOrientation: true
useDeprecatedToolbar: false
anchors.fill: parent
PageStack {
id: main_PageStack
Component.onCompleted: {
push(mainPage)
}
MainPage {
id: mainPage
}
FixerPage
{
id: fixerPage
}
CheckerPage
{
id: checkerPage
}
}
}
}