How to let the column scrollable?
Solved
QML and Qt Quick
-
@Mr-Pang Add it inside ScrollView. If you want it to be smooth and animated use
Flickable
inside it too.And then if you feel that there should be some built-in type for this then use
ListView
-
@Mr-Pang Add it inside ScrollView. If you want it to be smooth and animated use
Flickable
inside it too.And then if you feel that there should be some built-in type for this then use
ListView
-
Hello @Mr-Pang,
You don't need to use a repeater, but
model
anddelegate
.Have a look in the example provided here Move QML ListView via buttons