When user scrolling posts in my app i want recognize the current post the user is seeing now.
You can get y position on scroll from contentOffset
<ScrollView
ref={(s) => this.scrollview = s}
onScroll={(event) => {console.log(event.nativeEvent.contentOffset.y)}}
...
></ScrollView>