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