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

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