react-native – ReactNative onResponderRelease在Android上不起作用

前端之家收集整理的这篇文章主要介绍了react-native – ReactNative onResponderRelease在Android上不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在 Android设备上使用ScrollView的onResponderRelease事件,但它不能正常工作.像这样的代码
<ScrollView 
    onResponderRelease = {()=>{console.log('release')}}
/>

我看到很多反应原生的lib都像这样使用这个api.
支持android平台吗?

是的,它有这样的问题 – 您可以阅读有关此 https://github.com/facebook/react-native/issues/9447的更多信息

尝试使用’onMomentumScrollEnd’,在某些情况下,它会完全符合您的期望:

<ScrollView 
    onMomentumScrollEnd = {()=>{console.log('release on Android')}}
    onResponderRelease = {()=>{console.log('release on IOS')}}
/>
原文链接:https://www.f2er.com/react/300841.html

猜你在找的React相关文章