summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2018-04-19 18:35:36 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2018-04-19 18:35:36 +0200
commit69c500a2e0383765c221e68e0070470c78b1ddb7 (patch)
tree6f07d24cbe2ea934123faf8bf81fb6fcfaaca17b /views
parent796ae3b5a78f9a81f2cb397b14860c40af8990fb (diff)
downloadkube-69c500a2e0383765c221e68e0070470c78b1ddb7.tar.gz
kube-69c500a2e0383765c221e68e0070470c78b1ddb7.zip
dummy calendar picker
Diffstat (limited to 'views')
-rw-r--r--views/calendar/qml/View.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/views/calendar/qml/View.qml b/views/calendar/qml/View.qml
index c0adae9f..78c06d7a 100644
--- a/views/calendar/qml/View.qml
+++ b/views/calendar/qml/View.qml
@@ -73,6 +73,32 @@ RowLayout {
73 color: Kube.Colors.highlightedTextColor 73 color: Kube.Colors.highlightedTextColor
74 } 74 }
75 } 75 }
76
77 Column {
78 anchors {
79 bottom: parent.bottom
80 left: newEventButton.left
81 bottomMargin: Kube.Units.largeSpacing
82 }
83
84 spacing: Kube.Units.smallSpacing
85
86 Repeater {
87
88 model: ["calendar_1","calendar_2","calendar_3"]
89 delegate: Row {
90 spacing: Kube.Units.smallSpacing
91 Kube.CheckBox {
92 opacity: 0.9
93 }
94 Kube.Label {
95 text: modelData
96 color: Kube.Colors.highlightedTextColor
97 }
98 }
99 }
100
101 }
76 } 102 }
77 103
78 WeekView { 104 WeekView {