summaryrefslogtreecommitdiff
path: root/pages/TaskList.qml
blob: 712eb45e4da498d5423935389c71edfb30340515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
	}

	menuButton {
		onClicked: {
			drawer.visible = !drawer.visible
		}
	}

	ScrollBar.vertical: ScrollBar {}
}