itat_challenge/application.qml

16 lines
199 B
QML

import QtQuick
import QtQuick.Controls
ApplicationWindow {
width: 400
height: 400
visible: true
StackView {
id: stackView
anchors.fill: parent
initialItem: EventsPage {}
}
}