From 83f76aec9eed38f5dbf4e2418c47fba890f3143e Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Fri, 20 Sep 2019 11:30:42 +0700 Subject: add `HomeForm.ui.qml` --- features/Home.qml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 features/Home.qml (limited to 'features/Home.qml') diff --git a/features/Home.qml b/features/Home.qml new file mode 100644 index 0000000..44e941a --- /dev/null +++ b/features/Home.qml @@ -0,0 +1,50 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 +import "../../pages" + +Page { + header:ToolBar { + background: Rectangle { + color: "#FAFFFFFF" + } + RowLayout { + anchors.fill: parent + + ToolButton { + id: menuButton + icon.name: "menu-button" + icon.source: "../components/icons/menu-24px.svg" + highlighted: true + onClicked: { + if (pageView.depth > 1) { + pageView.pop() + } else { + drawer.open() + } + } + } + Label { + id:title + text: contentView.currentPage.title + verticalAlignment: Text.AlignVCenter + wrapMode: Text.WordWrap + font.family: "Work Sans" + font.weight: Font.Medium + font.pointSize: 20 + } + } + } + + } + +TaskList { + +} + +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ -- cgit v1.2.3