connected basic navigation model; completed controller

This commit is contained in:
Anika Raemer 2018-10-19 19:45:37 +02:00
parent 8a81c48606
commit 717e131b75
10 changed files with 60 additions and 39 deletions

View file

@ -18,13 +18,14 @@ Window {
flickableItem.interactive: true
contentItem:
ListView{
model: 20
model: navigationList.pModelItems
anchors.fill: parent
spacing: 10
orientation: ListView.Horizontal
delegate:
CircularListDelegate{
id: test
NavigationListDelegate{
id: delegate
model: navigationList.pModelItems[index]
}
}
}
@ -42,8 +43,9 @@ Window {
spacing: 10
orientation: ListView.Horizontal
delegate:
RectangularListDelegate{
NavigationListDelegate{
id: test
isCircle: false
}
}
}