summaryrefslogtreecommitdiff
path: root/TaskList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'TaskList.qml')
-rw-r--r--TaskList.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/TaskList.qml b/TaskList.qml
new file mode 100644
index 0000000..042fcad
--- /dev/null
+++ b/TaskList.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.12
+import QtQuick.Controls 2.12
+import "pages"
+
+TaskListForm {
+ objectName: "taskList"
+ model: taskList
+ delegate: TaskForm {
+ width: parent.width
+ height: task.height
+ checkBox.text: subject
+ }
+ ScrollBar.vertical: ScrollBar {}
+}