diff options
Diffstat (limited to 'pages/HomeForm.ui.qml')
-rw-r--r-- | pages/HomeForm.ui.qml | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/pages/HomeForm.ui.qml b/pages/HomeForm.ui.qml index 191f459..26c2013 100644 --- a/pages/HomeForm.ui.qml +++ b/pages/HomeForm.ui.qml @@ -4,8 +4,9 @@ import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 Rectangle { + id: rectangle - property alias backButton: menuButton + property alias menuButton: menuButton ToolBar { id: toolbar @@ -17,7 +18,9 @@ Rectangle { anchors.rightMargin: 0 anchors.left: parent.left anchors.leftMargin: 0 - background: rectangle + background: Rectangle { + color: "#FFF" + } RowLayout { anchors.fill: parent @@ -46,12 +49,29 @@ Rectangle { } } } + + Pane { + id: dismissableCard + height: 72 + anchors.top: toolbar.bottom + anchors.topMargin: 16 + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + + background: Rectangle { + color: "#F0E6FC" + border.color: "#D6C3F8" + radius: 6 + } + } } /*##^## Designer { - D{i:0;autoSize:true;height:480;width:640} + D{i:0;autoSize:true;height:480;width:640}D{i:7;anchors_width:200;anchors_x:0;anchors_y:62} } ##^##*/ |