summaryrefslogtreecommitdiff
path: root/pages/TaskList.qml
blob: 0714a8bc3c124587cb72c84de7440164171fc414 (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

TaskListForm {
	objectName: "taskList"
	model: taskList
	delegate: TaskForm {
		width: parent.width
		height: task.height

		checkBox.text: subject
	}

	ScrollBar.vertical: ScrollBar {}
}