diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 22:05:01 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 22:05:01 +0800 |
| commit | e5d1cb6db260c71e2205c4f65d383628bb518f5e (patch) | |
| tree | 00212ed61a0bdb79985d8bf7196461ba026cd9e2 /features/LoginForm.ui.qml | |
| parent | 372de3c1c8fb8d7be23713d51c1d4c926b7fcb10 (diff) | |
All forms and icons are moved here
Diffstat (limited to 'features/LoginForm.ui.qml')
| -rw-r--r-- | features/LoginForm.ui.qml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/features/LoginForm.ui.qml b/features/LoginForm.ui.qml new file mode 100644 index 0000000..2b241f1 --- /dev/null +++ b/features/LoginForm.ui.qml @@ -0,0 +1,29 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 + +Page { + property alias toolButton: toolButton + property alias contentView: contentView + + header: ToolBar { + background: Rectangle { + color: "#FAFFFFFF" + } + RowLayout { + ToolButton { + id: toolButton + icon.name: "back-button" + icon.source: "/components/icons/arrow-back-24px.svg" + highlighted: true + } + } + } + + StackView { + id: contentView + anchors.topMargin: 432 + anchors.fill: parent + } +} |