diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 15:16:28 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 15:16:28 +0700 |
commit | 284c2d501022d23e4cd860176443c5a502443f2f (patch) | |
tree | 6d90bb8f6dc024a0f083be70f8c904935d1d99af /main.qml |
initial commit
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/main.qml b/main.qml new file mode 100644 index 0000000..2c8f227 --- /dev/null +++ b/main.qml @@ -0,0 +1,17 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.3 + +ApplicationWindow { + id: window + width: 360 + height: 640 + visible: true + + OnboardingForm { + id: pageView + anchors.fill: parent + onboardingText1.text: qsTr("Everything you need to sell online.") + onboardingText2.text: qsTr("Set up your store in minutes and bring your brand to life") + } +} |