react-native – 在本机中滚动到ScrollView组件底部时调用事件

前端之家收集整理的这篇文章主要介绍了react-native – 在本机中滚动到ScrollView组件底部时调用事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有个问题.
如何在ScrollView底部向下滚动反应原生时调用函数
请帮我.
非常感谢!
有效!
var windowHeight = Dimensions.get('window').height,height = e.nativeEvent.contentSize.height,offset = e.nativeEvent.contentOffset.y;
if( windowHeight + offset >= height ){
    console.log('End Scroll')
}
原文链接:https://www.f2er.com/react/300808.html

猜你在找的React相关文章