diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-03 16:25:16 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-03 16:25:16 +0700 |
commit | 6e61230baf9d7973bdd588ee97a10aa9bc75be82 (patch) | |
tree | 006c5b2fa23e8859237fef7ebdcd7e244b1c0af3 /pages/ConfirmPasswordForm.ui.qml | |
parent | 0538d5fcd03186c4b6cbee39277826613b532a28 (diff) |
use toolbar for EmailForm.ui, ExistingLoginForm.ui, PasswordForm.ui, ConfirmPasswordForm.ui
Diffstat (limited to 'pages/ConfirmPasswordForm.ui.qml')
-rw-r--r-- | pages/ConfirmPasswordForm.ui.qml | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/pages/ConfirmPasswordForm.ui.qml b/pages/ConfirmPasswordForm.ui.qml index 34e03ef..d867587 100644 --- a/pages/ConfirmPasswordForm.ui.qml +++ b/pages/ConfirmPasswordForm.ui.qml @@ -13,26 +13,30 @@ Rectangle { property alias confirmPassButton: confirmPassButton property alias emailAddressLabel: emailAddressLabel - Rectangle { - id: appBar + ToolBar { + id: toolbar height: 56 - color: "#ffffff" + font.family: "Google Sans" anchors.top: parent.top anchors.topMargin: 0 anchors.right: parent.right anchors.rightMargin: 0 anchors.left: parent.left anchors.leftMargin: 0 + background: Rectangle { + color: "#FFF" + } - RoundButton { - id: backButton - flat: true - anchors.verticalCenter: parent.verticalCenter - anchors.left: parent.left - display: AbstractButton.IconOnly - icon.name: "back-icon" - icon.source: "/assets/arrow-back-24px.svg" - icon.color: "transparent" + RowLayout { + anchors.fill: parent + spacing: 8 + + ToolButton { + id: backButton + icon.name: "back-icon" + icon.source: "/assets/arrow-back-24px.svg" + highlighted: true + } } } @@ -116,3 +120,8 @@ Rectangle { Material.background: Material.primary } } + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ |