In QML, you can decorate items of a listview vertically or horizontally. But is it possible to make items float like what we do in css? I mean something like this:
________________
| Item1 Item2 Item3 |
| Item4 Item5 Item6 |
| Item7 |
|_______________|
Asked
Active
Viewed 375 times
0

Sassan
- 2,187
- 2
- 24
- 43
1 Answers
1
The solution was easy, adding for other people with the same problem: There is another component for this usage called GridView, it does exactly the job.

Sassan
- 2,187
- 2
- 24
- 43
-
1You can alse use Flow item – gbdivers Oct 03 '13 at 18:01
-
Yeah, thanks, in my case girds suit better, but generally flow does the exact thing of css float in qml. – Sassan Oct 03 '13 at 19:35