From 284c2d501022d23e4cd860176443c5a502443f2f Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Wed, 2 Dec 2020 15:16:28 +0700 Subject: initial commit --- main.qml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 main.qml (limited to 'main.qml') 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") + } +} -- cgit v1.2.3