diff options
Diffstat (limited to 'pages/PasswordForm.ui.qml')
-rw-r--r-- | pages/PasswordForm.ui.qml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index 5a5875e..f3ee37b 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -4,8 +4,6 @@ import QtQuick.Controls 2.12 Rectangle { id: rectangle - width: 363 - height: 628 color: "#fff" border.width: 0 @@ -23,18 +21,20 @@ Rectangle { anchors.left: parent.left anchors.leftMargin: 0 - Rectangle { - id: navIconBg - width: 24 - height: 24 - anchors.left: parent.left - anchors.leftMargin: 16 + Button { + id: backButton anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.leftMargin: 8 + display: AbstractButton.IconOnly + icon.name: "back-icon" + icon.source: "/assets/arrow-back-24px.svg" + icon.color: "transparent" - Button { - id: backButton - display: AbstractButton.IconOnly - anchors.fill: parent + background: Rectangle { + opacity: enabled ? 1.0 : 0.3 + color: backButton.down ? "#ddd" : "#fff" + radius: 6 } } } @@ -114,3 +114,8 @@ Rectangle { } } } + +/*##^## Designer { + D{i:0;autoSize:true;height:480;width:640} +} + ##^##*/ |