diff options
author | Orangerot <purple@orangerot.dev> | 2024-07-30 10:56:05 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-08-15 11:43:04 +0200 |
commit | 9a8db98b6398090f577fad4c347832a0aa801085 (patch) | |
tree | 4b09e82a10157ffcf5b2a9cc254b52504836a1c0 /res/gui/application.qml | |
parent | 0ff1b51223bd8f3424c83e5c044fd8a8887ae1c6 (diff) |
feat(qtquick): chat example to build up on
Diffstat (limited to 'res/gui/application.qml')
-rw-r--r-- | res/gui/application.qml | 16 |
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 {} + } } + |