diff options
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 {} +} |