diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:31:01 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-19 22:31:01 +0800 |
| commit | 12255d2fc81bb43fd01a941cd015ef17adfa0f7f (patch) | |
| tree | efca3cb812e6a1affdacad2494ea8222b76e1397 /TaskList.qml | |
| parent | b7baeea2ab0f999a755226b79242f78a472d5a80 (diff) | |
Make HomeForm UI independent from implementation-dependent TaskList
Diffstat (limited to 'TaskList.qml')
| -rw-r--r-- | TaskList.qml | 14 |
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 {} +} |