I'm trying to add a listener to scrolling on a Famo.us Scrollview on mobile.
From what I can find, the scrollview's sync emits start
, update
and end
events. But in practice I'm finding that the end
event is fired on touchend
, not when the scrollview actually finishes scrolling given momentum. And update
is fired on touchmove
, again completely ignoring momentum.
How do I listen to actual scrolling?