summaryrefslogtreecommitdiff
path: root/application.qml
blob: 5e5d092262d23b8c2a030a407ef72dce0702dbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 {}
  // }
}