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/EmailForm.ui.qml | |
parent | 0538d5fcd03186c4b6cbee39277826613b532a28 (diff) |
use toolbar for EmailForm.ui, ExistingLoginForm.ui, PasswordForm.ui, ConfirmPasswordForm.ui
Diffstat (limited to 'pages/EmailForm.ui.qml')
-rw-r--r-- | pages/EmailForm.ui.qml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index 969dcaa..f05fe96 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -12,28 +12,33 @@ Rectangle { property alias emailTextField: emailTextField property alias loginButton: loginButton - 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 + } } } + Label { x: 16 y: 398 |