summaryrefslogtreecommitdiff
path: root/TaskList.qml
blob: 1d7837f181d906db07f7d227f7c2ee73cb2a740c (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")
		}
	}
}