Issue
I have a question. How to call a function when scroll down bottom of ScrollView in react native? Please help me. Thank so much!
Solution
It worked!
var windowHeight = Dimensions.get('window').height,
height = e.nativeEvent.contentSize.height,
offset = e.nativeEvent.contentOffset.y;
if( windowHeight + offset >= height ){
console.log('End Scroll')
}
Answered By - jackmin
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.