diff options
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 + } + } } |