CollectionViewSource.Forms icon indicating copy to clipboard operation
CollectionViewSource.Forms copied to clipboard

A CollectionViewSource implementation that supports filtering, sorting and grouping for Xamarin Forms

Results 2 CollectionViewSource.Forms issues
Sort by recently updated
recently updated
newest added

Thx for this nice implementation. Any idea to get around the glitch that the elements of the the collectionview on update after the users scrolls when using a Filter?

Picker's `ItemsSource` property [is `IList`](https://github.com/xamarin/Xamarin.Forms/blob/ad71f116ed5a5d8402bbd25dbf0b96bb7821d5e1/Xamarin.Forms.Core/Picker.cs#L30) instead of `IEnumerable`. If we use an `IList`, CollectionViewSource will switch to `ListCollectionView` anyway, which internally provides an `IList`. This PR just exposes that externally...

enhancement