I'm trying to do something very simple but not getting the expected result.
1. ScrollView with Grid (vertical). MaxPerLine = 2, Have 8 items, would like it to look like:
1 2
3 4
5 6
7 8
but instead, I'm getting:
1 2 3 4
5 6 7 8
the clipping window is set at 2 per row, so 3,4,7,8 are being clipped while scrolling vertically.
-- It seems that the maxPerLine for Vertical in this case means 2 vertical lines.
How to set the max number of elements per ROW for a vertical scrollView?