diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-16 23:00:14 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-16 23:00:14 +0700 |
commit | 8b7db3fa2581c219805abb1471b75a51f1f0fa21 (patch) | |
tree | 1dae39c4c1024f746c54c213f4ccac43b2ffd8ba /LoginForm.ui.qml | |
parent | 5a586260aeab91d53e9316bf3395a34a91cd8cc0 (diff) |
register and login flow button change
Diffstat (limited to 'LoginForm.ui.qml')
-rw-r--r-- | LoginForm.ui.qml | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml index 148810b..d488de0 100644 --- a/LoginForm.ui.qml +++ b/LoginForm.ui.qml @@ -12,30 +12,30 @@ Rectangle { property alias emailButton: emailButton RoundButton { - id: googleButton - text: qsTr("Continue with Google") - font.family: "Google Sans" - font.capitalization: Font.MixedCase - anchors.bottom: emailButton.top - anchors.bottomMargin: 8 + id: emailButton + text: qsTr("Get started") anchors.right: parent.right anchors.rightMargin: 8 anchors.left: parent.left anchors.leftMargin: 8 + font.family: "Google Sans" + font.capitalization: Font.MixedCase + anchors.bottom: googleButton.top + anchors.bottomMargin: 8 Layout.fillWidth: true highlighted: true Material.background: Material.primary } RoundButton { - id: emailButton - text: qsTr("Continue with E-Mail") + id: googleButton + text: qsTr("Log in") + anchors.right: parent.right + anchors.left: parent.left flat: true font.family: "Google Sans" font.capitalization: Font.MixedCase - anchors.right: parent.right anchors.rightMargin: 8 - anchors.left: parent.left anchors.leftMargin: 8 anchors.bottom: disclaimer.top anchors.bottomMargin: 8 @@ -91,7 +91,7 @@ Rectangle { Text { id: onboarding_text_1 text: qsTr("Achieve more today, chill tomorrow.") - anchors.bottom: googleButton.top + anchors.bottom: emailButton.top anchors.bottomMargin: 16 wrapMode: Text.WordWrap anchors.right: parent.right @@ -104,10 +104,9 @@ Rectangle { } } - - - -/*##^## Designer { +/*##^## +Designer { D{i:5;anchors_height:258;anchors_width:258;anchors_x:51;anchors_y:80} } - ##^##*/ +##^##*/ + |