summaryrefslogtreecommitdiff
path: root/pages/CreateProfileForm.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-03 10:48:09 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-03 10:48:09 +0700
commit931275fe0f0b29372c18a477ceff2624ed867bd1 (patch)
treec9413e71a959df58a17fab8ef45ec245659adbc4 /pages/CreateProfileForm.ui.qml
parent8768964a740c27909e31a5954a48c9497719f5fe (diff)
Add skip button to skip process
Diffstat (limited to 'pages/CreateProfileForm.ui.qml')
-rw-r--r--pages/CreateProfileForm.ui.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/pages/CreateProfileForm.ui.qml b/pages/CreateProfileForm.ui.qml
index 4d0ad9c..402563b 100644
--- a/pages/CreateProfileForm.ui.qml
+++ b/pages/CreateProfileForm.ui.qml
@@ -9,6 +9,7 @@ Rectangle {
property alias enterFullName: enterFullName
property alias backButton: backButton
+ property alias skipButton: skipButton
ToolBar {
id: toolbar
@@ -45,6 +46,14 @@ Rectangle {
Layout.fillWidth: true
}
ToolButton {
+ id: skipButton
+ text: qsTr("Skip")
+ font.weight: Font.Medium
+ display: AbstractButton.TextOnly
+ font.family: "Google Sans"
+ font.pointSize: 14
+ font.capitalization: Font.MixedCase
+ highlighted: true
}
}
}