diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-06 00:19:29 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-06 00:19:29 +0700 |
commit | bf635def9dadee8a4aff8f90d8f419b02286cf9c (patch) | |
tree | dbfc31af5ac1248d3c42411ecdc9f27ac51d4991 /pages/GetStartedForm.ui.qml | |
parent | c0c1c106669c25c669bdbe9cdfd0233fdd573b78 (diff) |
add back button
Diffstat (limited to 'pages/GetStartedForm.ui.qml')
-rw-r--r-- | pages/GetStartedForm.ui.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/GetStartedForm.ui.qml b/pages/GetStartedForm.ui.qml index 7cff151..8132864 100644 --- a/pages/GetStartedForm.ui.qml +++ b/pages/GetStartedForm.ui.qml @@ -7,12 +7,15 @@ Page { property alias backButton: backButton header: ToolBar { background: Rectangle { - color: "#FAFFFFFF" + color: "transparent" } RowLayout { ToolButton { id: backButton + display: AbstractButton.IconOnly highlighted: true + icon.name: "back-button" + icon.source: "../icons/arrow-back-24px.svg" } } } |