Horizontal list in Xamarin.Forms

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?

+4
source share
1 answer

As far as I know, such a thing is not implemented directly in Xamarin Forms. But there is control FlowListViewfrom Daniel Lyuberda. Perhaps this is what you want:

enter image description here

https://github.com/daniel-luberda/DLToolkit.Forms.Controls/tree/master/FlowListView/

+2

Source: https://habr.com/ru/post/1621090/


All Articles