summaryrefslogtreecommitdiff
path: root/application.qml
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-07-30 10:56:05 +0200
committerOrangerot <purple@orangerot.dev>2024-07-30 10:56:05 +0200
commit71aee728b7bc5868e1e6ade8fbe615a6fdf132ba (patch)
tree1b8250c172791587abd38fa9b02ccd34d54925ec /application.qml
parentef2b0ced30063654f06bb1ff12ba6f2a86167bc9 (diff)
feat(qtquick): chat example to build up on
Diffstat (limited to 'application.qml')
-rw-r--r--application.qml16
1 files changed, 9 insertions, 7 deletions
diff --git a/application.qml b/application.qml
index 38da5d6..cf7b04d 100644
--- a/application.qml
+++ b/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 {}
+ }
}
+