diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-03 10:48:09 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-03 10:48:09 +0700 |
commit | 931275fe0f0b29372c18a477ceff2624ed867bd1 (patch) | |
tree | c9413e71a959df58a17fab8ef45ec245659adbc4 /pages/CreateProfileForm.ui.qml | |
parent | 8768964a740c27909e31a5954a48c9497719f5fe (diff) |
Add skip button to skip process
Diffstat (limited to 'pages/CreateProfileForm.ui.qml')
-rw-r--r-- | pages/CreateProfileForm.ui.qml | 9 |
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 } } } |