As stated above, I want to create horizontal ListViewin xamarin.forms.
But the solutions and examples that I found are not the horizontal list I want.
In every article I came across, the elements are arranged in this way
item1____item2____item3____item4____item5
I want to do something like this
item1___item2
item3___item4
item5___and so on
in a windows phone we can do it like this
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolkit:WrapPanel ItemWidth="222" ItemHeight="100"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
Right now, is it possible to create something like this in xamarin.forms?
source
share