具有嵌套ScrollView的可滑动React-native-modal

Lou*_*ocq 7 javascript react-native react-native-modal

我正在使用最新版本react-native-modal来实现滑动功能

我想在我的模态中添加一个ScrollView.

这是我到目前为止所做的

https://snack.expo.io/ryRylJFHz

Edi*_*iba 12

我知道这个问题很老,但由于没有答案,我正在为此提供解决方案。

的最新版本react-native-modal提供了一个道具propagateSwipe,允许滑动事件传播到您案例中的子组件以ScrollView

<Modal propagateSwipe={true}> 
    <ScrollView> 
       // .... other components
    </ScrollView>
<Modal>
Run Code Online (Sandbox Code Playgroud)

但是目前,v11.3.1当您提供swipeDirection道具时它有一个小问题并且它不起作用。

这个问题的解决方法是在TouchableOpacity里面添加组件ScrollView

<Modal> 
    <ScrollView> 
         <TouchableOpacity> ... </TouchableOpacity> 
    </ScrollView>
<Modal>
Run Code Online (Sandbox Code Playgroud)

您可以在此处阅读有关此问题的更多信息。