diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:15:47 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:15:47 +0800 |
commit | b7baeea2ab0f999a755226b79242f78a472d5a80 (patch) | |
tree | 64a3f77287ca1f4af365ab1d911079bd417ca574 /main.qml | |
parent | 7362b70f98e88f6a4118f79744c6f358abd730de (diff) |
Replaced UIs whose replacements are ready in Larva
and reorganise logical QML files
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 31 |
1 files changed, 15 insertions, 16 deletions
@@ -1,23 +1,22 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 -import QtQuick.Layouts 1.12 -import "larva/features" ApplicationWindow { - id: window - visible: true - width: 360 - height: 640 - title: { - text: qsTr("kelakon") - } + id: window + visible: true + width: 360 + height: 640 + title: { + text: qsTr("kelakon") + } - - StackView { - id: pageView - anchors.fill: parent - - initialItem: Onboarding {} - } + StackView { + property alias onboarding: onboarding + id: pageView + anchors.fill: parent + initialItem: Onboarding { + id: onboarding + } + } } |