summaryrefslogtreecommitdiff
path: root/Home.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Home.qml')
-rw-r--r--Home.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Home.qml b/Home.qml
index f125141..af00c24 100644
--- a/Home.qml
+++ b/Home.qml
@@ -68,6 +68,28 @@ Page {
width: window.width * 0.8
height: window.height
visible: false
+
+ Column {
+ anchors.fill: parent
+ ItemDelegate {
+ text: qsTr("Today")
+ width: parent.width
+ onClicked: {
+ contentView.pop("HomeForm.ui.qml")
+ drawer.close()
+ }
+ }
+
+ ItemDelegate {
+ text:qsTr("Future")
+ width: parent.width
+ onClicked: {
+ contentView.push("FutureForm.ui.qml")
+ drawer.close()
+ }
+
+ }
+ }
}
StackView {