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

TaskListForm {
	listView {
		objectName: "taskList"
		model: taskList
		delegate: TaskForm {
			width: parent.width
			height: task.height
			taskTitle.text: subject
			itemDelegate.onClicked: contentView.push("TaskDetails.qml")
		}
	}
}