0

我想禁用滑动以打开抽屉导航但不关闭?

我找到了 android 的解决方案,但没有找到 react-native 的解决方案。目前我正在使用这个:

drawerLockMode: 'locked-open'

哪个有效,但我无法通过滑动关闭它。

我用这样的汉堡菜单图标打开抽屉:

onPress={() => props.navigation.toggleDrawer()}

这里有人已经这样做了吗?有没有办法drawerLockMode全局设置?onDrawerOpenedonDrawerClosed道具存在吗?谢谢!

4

3 回答 3

1

你需要一个react-native-gesture-handler模块来swipe.

你可以跑

 yarn add react-native-gesture-handler

OR

npm install --save react-native-gesture-handler

react-native link react-native-gesture-handler

更新您的MainActivity.java文件(或您创建 的实例的任何位置ReactActivityDelegate),以便它覆盖负责创建ReactRootView实例的方法,然后使用此库提供的根视图包装器。不要忘记导入ReactActivityDelegateReactRootViewRNGestureHandlerEnabledRootView

package com.swmansion.gesturehandler.react.example;

import com.facebook.react.ReactActivity;
+ import com.facebook.react.ReactActivityDelegate;
+ import com.facebook.react.ReactRootView;
+ import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;

public class MainActivity extends ReactActivity {

  @Override
  protected String getMainComponentName() {
    return "Example";
  }

+  @Override
+  protected ReactActivityDelegate createReactActivityDelegate() {
+    return new ReactActivityDelegate(this, getMainComponentName()) {
+      @Override
+      protected ReactRootView createRootView() {
+       return new RNGestureHandlerEnabledRootView(MainActivity.this);
+      }
+    };
+  }
}

有关详细信息,请参阅

于 2019-08-12T13:50:21.797 回答
1

如果您使用的是 react-navigation,您可以获得与导航相关的任何更改时触发的事件。即使是抽屉打开或抽屉关闭事件。(我现在不能举一个可行的例子。)

有关更多信息,请点击这些链接。 React Navigation 抽屉的状态?(打开或关闭) https://reactnavigation.org/docs/en/drawer-based-navigation.html

尝试获取事件对象信息以检测和覆盖行为。

于 2019-08-12T12:03:58.957 回答
0

这是对我有用的解决方案,我认为它简单易行:

import { DrawerNavigator } from "../router/router";
import React, { Component } from "react";

export default class Drawer extends Component {
  state = {
    lockMode: "locked-closed"
  };
  render() {
    return (
      <DrawerNavigator
        screenProps={{
          drawerLockMode: this.state.lockMode
        }}
        onNavigationStateChange={(prevState, newState, action) => {
          if (
            action.type === "Navigation/MARK_DRAWER_SETTLING" &&
            !action.willShow
          )
            this.setState({ lockMode: "locked-closed" });
          if (
            action.type === "Navigation/MARK_DRAWER_SETTLING" &&
            action.willShow
          ) {
            this.setState({ lockMode: "unlocked" });
          }
        }}
      />
    );
  }
}
于 2019-08-12T17:04:09.637 回答