GroupedListView
GroupedListView.list()
GroupedListView.grid()
See documentation
- Fixes an issue that makes horizontal lists and scroll lead to Unbounded height
- Added a new argument in the builders
itemsBuilder
andcustomBuilder
no longer takesList<I>
as parameter but aList<IndexedItem<I>>
. gridItemBuilder
inGroupedListView.grid
andlistItemBuilder
inGroupedListView.list()
are taking a new parameter,int itemIndexInOriginalList
which is, as it says, the index of the item in the original given list.
This is a breaking change, as your code needs to be updated to takes this new parameter in account.
This fills a requirement asked in the project
This would be necessary to create a "scroll to header" function and is available in most List/GridView objects and other grouped list packages.