【问题标题】:How to increase swipe back area on iOS with react-native-navigation?如何使用 react-native-navigation 在 iOS 上增加滑动区域?
【发布时间】:2021-07-10 04:46:35
【问题描述】:

"react-native-navigation": "^7.17.1",

向后滑动区域非常小,很难触发。如何增加回扫区域?

我可以在 Android 上使用弹出手势吗?

【问题讨论】:

    标签: react-native-navigation wix-react-native-navigation


    【解决方案1】:

    您可以在 StackNavigator 中更改导航选项。也许在你的 index.js 中

    <NavigationContainer>
      <Stack.Navigator>
        <Stack.Screen
          name="component_name"
          component={COMPONENT}
          options={{
            gestureResponseDistance: {horizontal: VALUE},   // change VALUE here
          }}
        />
      </Stack.Navigator>
    </NavigationContainer>
    

    【讨论】:

    • 没有。反应原生导航。不是反应导航
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-01-20
    • 2019-08-17
    • 2017-10-11
    • 2019-04-07
    相关资源
    最近更新 更多