summaryrefslogtreecommitdiff
path: root/features/DayListForm.ui.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-24 16:02:41 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-24 16:02:41 +0800
commitf7044604ac66a6ee1986d93183645aec566f628f (patch)
tree6f74bcb52c33f0a1258ceab605ebd25bbb497dd3 /features/DayListForm.ui.qml
parent4a682d953c2352107fee6d3dec8de324207351fb (diff)
Task related forms from Kelakon
Diffstat (limited to 'features/DayListForm.ui.qml')
-rw-r--r--features/DayListForm.ui.qml18
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
+ }
+}