Binwell / FastGrid

FastGrid component for Xamarin.Forms based on Android RecyclerView and iOS UICollectionView
MIT License
108 stars 25 forks source link

[ios] Onscrolled returns X offset instead of scroll Y delta #1

Open ilyaqznetsow opened 5 years ago

ilyaqznetsow commented 5 years ago

Ios renderers OnScroll event returns 0 as a Delta value when using fastgrid as vertical collection view.

void HandleOnScrolled(CGPoint contentOffset, ScrollActionType type) { if (Element == null) return; Element.RaiseOnScroll(contentOffset.X, contentOffset.X, contentOffset.Y, type); The first arguement of RaiseOnScroll should be something like contentOffset.Y - _oldOffset