diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 16:02:41 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 16:02:41 +0800 |
| commit | f7044604ac66a6ee1986d93183645aec566f628f (patch) | |
| tree | 6f74bcb52c33f0a1258ceab605ebd25bbb497dd3 /features/DayListForm.ui.qml | |
| parent | 4a682d953c2352107fee6d3dec8de324207351fb (diff) | |
Task related forms from Kelakon
Diffstat (limited to 'features/DayListForm.ui.qml')
| -rw-r--r-- | features/DayListForm.ui.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/features/DayListForm.ui.qml b/features/DayListForm.ui.qml new file mode 100644 index 0000000..1b4c937 --- /dev/null +++ b/features/DayListForm.ui.qml @@ -0,0 +1,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 + } +} |