summaryrefslogtreecommitdiff
path: root/features/DayListForm.ui.qml
blob: 1b4c937636ae4d18fcca9a8479a0a19d68eb210d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.12
import QtQuick.Controls 2.12

Column {
	property alias todayItemDelegate: todayItemDelegate
	property alias futureItemDelegate: futureItemDelegate

	anchors.fill: parent
	ItemDelegate {
		id: todayItemDelegate
		width: parent.width
	}

	ItemDelegate {
		id: futureItemDelegate
		width: parent.width
	}
}