Is it possible to get the current scroll position, or the current page of a component in React Native?
So something like:
<
To get the x/y after scroll ended as the original questions was requesting, the easiest way is probably this:
{ // scroll animation ended console.log(e.nativeEvent.contentOffset.x); console.log(e.nativeEvent.contentOffset.y); }}> ...content