Currently I have a task to create a xamarin page with multiple stacklayouts(kind of a box) and fill it up sequentially in horizontal direction once its filled the screen then remaining boxes should start fill in the next line horizontally. Exactly how Div tag in Html works with "Float:left" property.
First of all, whether is it possible in Xamarin forms or not?
I have tried creating a Grid with isvisible property of Grid cell to false or true, but its not a solution at all for the task that I am working on.
Layout should looks like below image, If I have three boxes(decided based on the objects from back end) then it should fill first row three consecutive cells, if there are 5 objects fetched then 5th object(box) should be filled in second row first cell.