你需要一个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
实例的方法,然后使用此库提供的根视图包装器。不要忘记导入ReactActivityDelegate
、ReactRootView
和RNGestureHandlerEnabledRootView
:
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);
+ }
+ };
+ }
}
有关详细信息,请参阅