File tree Expand file tree Collapse file tree 1 file changed +18
-10
lines changed Expand file tree Collapse file tree 1 file changed +18
-10
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,18 +23,25 @@ ApplicationWindow {
22
23
anchors .fill : parent
23
24
}
24
25
25
- Wizard {
26
+ Page {
26
27
id: onboardingWizard
28
+ background: null
27
29
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)
30
+ SwipeView {
31
+ id: swipeView
32
+ property bool finished: false
33
+ anchors .fill : parent
34
+ interactive: false
35
+
36
+ OnboardingCover {}
37
+ OnboardingStrengthen {}
38
+ OnboardingBlockclock {}
39
+ OnboardingStorageLocation {}
40
+ OnboardingStorageAmount {}
41
+ OnboardingConnection {}
42
+
43
+ onFinishedChanged: main .push (node)
44
+ }
37
45
}
38
46
Component {
39
47
id: node
You can’t perform that action at this time.
0 commit comments