add subdirectories recursively

This commit is contained in:
Anika Raemer 2018-10-19 20:22:25 +02:00
parent 717e131b75
commit 99a2d118c8
6 changed files with 70 additions and 40 deletions

View file

@ -29,24 +29,23 @@ Window {
}
}
}
MyScrollView{
anchors.left: parent.left
anchors.right: parent.right
anchors.top: circleList.bottom
anchors.margins: 20
// MyScrollView{
// anchors.left: parent.left
// anchors.right: parent.right
// anchors.top: circleList.bottom
// anchors.margins: 20
flickableItem.interactive: true
contentItem:
ListView{
model: 20
anchors.fill: parent
spacing: 10
orientation: ListView.Horizontal
delegate:
NavigationListDelegate{
id: test
isCircle: false
}
}
}
// flickableItem.interactive: true
// contentItem:
// ListView{
// model: 20
// anchors.fill: parent
// spacing: 10
// orientation: ListView.Horizontal
// delegate:
// NavigationListDelegate{
// id: test
// }
// }
// }
}