summaryrefslogtreecommitdiff
path: root/res/gui/application.qml
diff options
context:
space:
mode:
Diffstat (limited to 'res/gui/application.qml')
-rw-r--r--res/gui/application.qml16
1 files changed, 9 insertions, 7 deletions
diff --git a/res/gui/application.qml b/res/gui/application.qml
index 38da5d6..cf7b04d 100644
--- a/res/gui/application.qml
+++ b/res/gui/application.qml
@@ -2,12 +2,14 @@ import QtQuick
import QtQuick.Controls
ApplicationWindow {
- width: 400
- height: 400
- visible: true
+ width: 400
+ height: 400
+ visible: true
- Button {
- id: button
- text: "A Special Button"
- }
+ StackView {
+ id: stackView
+ anchors.fill: parent
+ initialItem: EventsPage {}
+ }
}
+