diff options
| author | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 16:54:15 +0700 |
|---|---|---|
| committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 16:54:15 +0700 |
| commit | 9fef42ac006e3ed1f2fb3180e4ae39c60d0ba7dc (patch) | |
| tree | b0c20cdd2abb564a87302d8d96d6730a72dae84f /main.qml | |
| parent | efc087fa847bcd87514e7da824951871e065dc4e (diff) | |
add disclaimer text
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,17 +1,22 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 -import QtQuick.Layouts 1.3 +import QtQuick.Layouts 1.12 ApplicationWindow { id: window width: 360 height: 640 visible: true + title: { + text: qsTr("namatoko seller") + } OnboardingForm { id: pageView anchors.fill: parent + startButton.onClicked: pageView.push("GetStarted.qml") onboardingText1.text: qsTr("Everything you need to sell online.") onboardingText2.text: qsTr("Set up your store in minutes and bring your brand to life") + disclaimerText.text: qsTr("By tapping 'Get started' and using this app, you're agreeing to our terms of service and privacy policy") } } |