diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-18 15:35:27 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-18 15:35:27 +0700 |
commit | 2978cc973965acf7c546f2aec28ddfd8bea5e5a7 (patch) | |
tree | 1aa19b69943d17c78a66c07618f635fbe1127c0f /main.qml | |
parent | 03f6b575155119ee56c64aa1263942434f119858 (diff) |
re-using `toolBar`
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,10 +12,9 @@ ApplicationWindow { title: { text: qsTr("kelakon") } - /* header: ToolBar { - Material.elevation: 0 + background: Rectangle { color: "#FAFFFFFF" } @@ -46,7 +45,7 @@ ApplicationWindow { } } } - */ + Drawer { id: drawer @@ -75,7 +74,6 @@ ApplicationWindow { } } } - StackView { id: stackView initialItem: Onboarding { @@ -83,5 +81,7 @@ ApplicationWindow { } anchors.fill: parent + + } } |