File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import QtQuick.Controls 2.15
7
7
import QtQuick.Layouts 1.15
8
8
import "../components"
9
9
import "../controls"
10
+ import "./onboarding"
10
11
11
12
ApplicationWindow {
12
13
id: appWindow
@@ -22,19 +23,25 @@ ApplicationWindow {
22
23
anchors .fill : parent
23
24
}
24
25
25
- Wizard {
26
+ Component {
26
27
id: onboardingWizard
27
- anchors .fill : parent
28
- views: [
29
- " onboarding/OnboardingCover.qml" ,
30
- " onboarding/OnboardingStrengthen.qml" ,
31
- " onboarding/OnboardingBlockclock.qml" ,
32
- " onboarding/OnboardingStorageLocation.qml" ,
33
- " onboarding/OnboardingStorageAmount.qml" ,
34
- " onboarding/OnboardingConnection.qml"
35
- ]
36
- onFinishedChanged: main .push (node)
28
+ SwipeView {
29
+ id: swipeView
30
+ property bool finished: false
31
+ anchors .fill : parent
32
+ interactive: false
33
+
34
+ OnboardingCover {}
35
+ OnboardingStrengthen {}
36
+ OnboardingBlockclock {}
37
+ OnboardingStorageLocation {}
38
+ OnboardingStorageAmount {}
39
+ OnboardingConnection {}
40
+
41
+ onFinishedChanged: main .push (node)
42
+ }
37
43
}
44
+
38
45
Component {
39
46
id: node
40
47
Page {
You can’t perform that action at this time.
0 commit comments