我试图在Android设备上使用ScrollView的onResponderRelease事件,但它不能正常工作。像这样的代码:
<ScrollView
onResponderRelease = {()=>{console.log('release')}}
/>
我看到很多反应原生的lib都像这样使用这个api。 它支持android平台吗?
答案 0 :(得分:0)
是的,它有这样的问题 - 您可以阅读有关此https://github.com/facebook/react-native/issues/9447
的更多信息尝试使用'onMomentumScrollEnd',在某些情况下,它会完全符合您的预期:
<ScrollView
onMomentumScrollEnd = {()=>{console.log('release on Android')}}
onResponderRelease = {()=>{console.log('release on IOS')}}
/>