itat_challenge/res/gui/application.qml

16 lines
199 B
QML
Raw Normal View History

2024-07-26 17:49:18 +02:00
import QtQuick
import QtQuick.Controls
ApplicationWindow {
width: 400
height: 400
visible: true
2024-07-26 17:49:18 +02:00
StackView {
id: stackView
anchors.fill: parent
initialItem: EventsPage {}
}
2024-07-26 17:49:18 +02:00
}