summaryrefslogtreecommitdiff
path: root/TaskList.qml
blob: 0e682df48896d27c158d3ca44bcb9a73e7b4ddb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.12
import QtQuick.Controls 2.12
import "forms"

TaskListForm {
	listView {
		objectName: "taskList"
		model: taskList
		delegate: TaskForm {
			width: parent.width
			height: task.height
			checkBox.text: subject
		}
	}
}