From 69c500a2e0383765c221e68e0070470c78b1ddb7 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Thu, 19 Apr 2018 18:35:36 +0200 Subject: dummy calendar picker --- views/calendar/qml/View.qml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'views') 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 { color: Kube.Colors.highlightedTextColor } } + + Column { + anchors { + bottom: parent.bottom + left: newEventButton.left + bottomMargin: Kube.Units.largeSpacing + } + + spacing: Kube.Units.smallSpacing + + Repeater { + + model: ["calendar_1","calendar_2","calendar_3"] + delegate: Row { + spacing: Kube.Units.smallSpacing + Kube.CheckBox { + opacity: 0.9 + } + Kube.Label { + text: modelData + color: Kube.Colors.highlightedTextColor + } + } + } + + } } WeekView { -- cgit v1.2.3