Description
Using CollectionView in Xamarin.Forms causing not all items are displayed properly, but after a while, they just get repeated.
It happens only on iOS (tested on 13.4), on Android, it works ok.
Tested on XF 4.5.0.617 and 4.5.0.530- both same
Steps to Reproduce
- Open attached project, and run on iOS
CollectionViewBug.zip
If you see the debug output log, you could also see that on iOS, after you scroll out the first page, it does not call SKCanvasViewIconListItem_PaintSurface to paint the new items scrolled into the view - it just reuse(?) existing items without calling InvalidateSurface() on them, so old drawing remains.
On Android, you could see that SKCanvasViewIconListItem_PaintSurface is called for every item as you scroll.
Expected Behavior
To display all items in CollectionView properly
Basic Information
- Version with issue: 4.5.0.617 and 4.5.0.530 (tested only these two)
- Platform Target Frameworks:
Screenshots
Android OK:

iOS wrong, after item 40, old items appear in random(?) order instead of 41, 42, 43, ...:
