diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-17 15:42:41 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-17 15:42:41 +0700 |
commit | 7d906895561be8f6bb25511becf2a53a80229945 (patch) | |
tree | 8071f8034246727f0619bbf685ed01f62afb8360 /main.qml | |
parent | f3a84461e384b1699516e9adc1a73b24667f7ede (diff) |
use `Onboarding` feature as initialItem
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,7 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 import QtQuick.Layouts 1.12 +import "features" ApplicationWindow { id: window @@ -49,6 +50,7 @@ ApplicationWindow { id: drawer width: window.width * 0.8 height: window.height + visible: false Column { anchors.fill: parent @@ -74,7 +76,10 @@ ApplicationWindow { StackView { id: stackView - initialItem: "HomeForm.ui.qml" + initialItem: Onboarding { + + } + anchors.fill: parent } } |