From 71aee728b7bc5868e1e6ade8fbe615a6fdf132ba 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 --- application.qml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'application.qml') 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 {} + } } + -- cgit v1.2.3