25 lines
405 B
QML
25 lines
405 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
ApplicationWindow {
|
|
width: 400
|
|
height: 400
|
|
visible: true
|
|
|
|
ListView {
|
|
id: listView
|
|
anchors.fill: parent
|
|
model: sports // This will reference the model added to the context
|
|
delegate: ItemDelegate {
|
|
text: modelData
|
|
}
|
|
}
|
|
|
|
// StackView {
|
|
// id: stackView
|
|
// anchors.fill: parent
|
|
// initialItem: EventsPage {}
|
|
// }
|
|
}
|
|
|