summaryrefslogtreecommitdiff
path: root/TaskList.qml
blob: ab92327ff97515e513477513878743c83a636be3 (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: contentView.push("TaskDetails.qml")
		}
	}
}