Is it possible to get the current scroll position, or the current page of a <ScrollView>
component in React Native?
So something like:
<ScrollView horizontal={true} pagingEnabled={true} onScrollAnimationEnd={() => { // get this scrollview's current page or x/y scroll position }}> this.state.data.map(function(e, i) { <ImageCt key={i}></ImageCt> })</ScrollView>