Hi,

I'm using a gridview in QML which is being populated by a QList in C++ code.

Currently I have it displayed 2 items per row in QML.

[ITEM1][ITEM2]
[Item3]

If i were to add another tiem it would add it like this:

[ITEM1][ITEM2]
[Item3][Item4]

is it possible to change the order in which you display/populate a gridview so I can add the items to the front so it will do the following:
For example:
Add 1 item it would look like this:
[Item1]
add another item ti would look like this:
[Item2][Item1]

Add another item:
[Item3][Item2]
[Item1]

Thanks