diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-06 12:03:43 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-06 12:03:43 +0800 |
commit | 7dadd495657a8baa67d26dcd6f961e1c523d2a2e (patch) | |
tree | 4e530d4b80be89a8fe4c6bbdb96405cfc96ae86c /pages/TaskList.qml | |
parent | 015650a6fadd2592100950c57146fcc5c61764a2 (diff) |
Task related views using the C++ model
Diffstat (limited to 'pages/TaskList.qml')
-rw-r--r-- | pages/TaskList.qml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pages/TaskList.qml b/pages/TaskList.qml new file mode 100644 index 0000000..712eb45 --- /dev/null +++ b/pages/TaskList.qml @@ -0,0 +1,21 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 + +TaskListForm { + objectName: "taskList" + model: taskList + delegate: TaskForm { + width: parent.width + height: task.height + + checkBox.text: subject + } + + menuButton { + onClicked: { + drawer.visible = !drawer.visible + } + } + + ScrollBar.vertical: ScrollBar {} +} |