Is it possible to have a horizontal collectioview/listview inside main collectionview/listview. ? i want to achieve nested listview inside main listview.any help will be apreciated.
Do you mean to group the listview or the collectionview? ListView and CollectionView support displaying grouped data, enable the corresponding property to use the function.
You should create a horizontal and vertical list view using two collectionviews. Or create a horizontal list using collectionview and vertical list from listview
Answers
Bad idea.
Instead of that you can create <Layout.horizontal>
""
<Layout.horizontal>
</Layout.horizontal>
""
Do you mean to group the listview or the collectionview?
ListView
andCollectionView
support displaying grouped data, enable the corresponding property to use the function.Check the tutorials:
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview/grouping
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/listview/customizing-list-appearance
You should create a horizontal and vertical list view using two collectionviews. Or create a horizontal list using collectionview and vertical list from listview