Currently there is difference between how scroll behaves between both platforms. On iOS, vertical scroll in the feed feels “dampened”: after releasing the finger, the list keeps scrolling for a long time and slows down gradually. On Android, scroll stops much faster and feels more “instant.”
Cause: Different default scroll physics:
-
iOS (UIScrollView): Default decelerationRate is ~0.998, so momentum is long and scroll coasts for a while.
-
Android: Default behavior stops scroll sooner, so it feels more instant.
Possible solutions to align behaviour:
-
patching or overwriting UIScrollView for this specific case
-
Replace list with carousel pattern, or combine both to get desired result
Currently there is difference between how scroll behaves between both platforms. On iOS, vertical scroll in the feed feels “dampened”: after releasing the finger, the list keeps scrolling for a long time and slows down gradually. On Android, scroll stops much faster and feels more “instant.”
Cause: Different default scroll physics:
iOS (UIScrollView): Default decelerationRate is ~0.998, so momentum is long and scroll coasts for a while.
Android: Default behavior stops scroll sooner, so it feels more instant.
Possible solutions to align behaviour:
patching or overwriting UIScrollView for this specific case
Replace list with carousel pattern, or combine both to get desired result