From 9a8db98b6398090f577fad4c347832a0aa801085 Mon Sep 17 00:00:00 2001 From: Orangerot Date: Tue, 30 Jul 2024 10:56:05 +0200 Subject: feat(qtquick): chat example to build up on --- res/gui/application.qml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'res/gui/application.qml') 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 {} + } } + -- cgit v1.2.3