React Native中内无法滚动

问题:

ScrollView nested within TouchableOpacity is not scrollable in React Native.

在React Native中,会遇到这种情况,写在内导致无法滑动,由于手势问题。

例如:




{Picture_Array}



这种情况Scrollview是无法滚动的。

解决方式:

在ScrollView中加个TouchableOpacity,就可以滚动了,例如:





{Picture_Array}




这样问题就完美解决了。

你可能感兴趣的:(React Native中内无法滚动)