I'm trying to find the y coordinates when scrolling ends
<FlatList
onMomentumScrollEnd={(event) => { console.log(event.nativeEvent.contentOffset.y)}}
snapToInterval={50}
/>
but when I hold it in between 2 items and then release it and it's starts to snap,
it gives all the y coordinates between snapping as well
like this
so is there anyway I could get the y coordinates when the scroll has completely stopped moving?