summaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index d8a888d..b432dd5 100644
--- a/main.qml
+++ b/main.qml
@@ -11,11 +11,16 @@ ApplicationWindow {
Material.accent: Material.DeepPurple
+ Drawer {
+ id: drawer
+ width: 0.8 * appWindow.width
+ height: appWindow.height
+ }
+
StackView {
id: stackView
anchors.fill : parent
initialItem: Login {}
}
-
}