博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react-navigation 3.x版本的安装以及react-native-gesture-handler配置
阅读量:5368 次
发布时间:2019-06-15

本文共 1865 字,大约阅读时间需要 6 分钟。

 

一、安装依赖,使用npm或yarn命令,3.x版本必须安装react-native-gesture-handler

react-navigationreact-native-gesture-handler

 

二、 配置react-native-gesture-handler,可以执行如下命令

react-native link react-native-gesture-handler

android执行此命令,有时候会没有效果,需要检查核实

  • 查看android/settings.gradle
  • 查看android/app/build.gradle
  • 查看android/app/src/main/java/com/projectname/MainActivity.java和MainApplication.java
//settings.gradleinclude ':react-native-gesture-handler'project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')//app\build.gradleimplementation project(':react-native-gesture-handler')//MainApplication.javaimport com.swmansion.gesturehandler.react.RNGestureHandlerPackage;public class MainApplication extends Application implements ReactApplication {  private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {    ...    @Override    protected List
getPackages() { return Arrays.
asList( new MainReactPackage(), new RNGestureHandlerPackage() ); } ... };//MainActivity.javaimport com.facebook.react.ReactActivityDelegate;import com.facebook.react.ReactRootView;import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;public class MainActivity extends ReactActivity { ... @Override protected ReactActivityDelegate createReactActivityDelegate() { return new ReactActivityDelegate(this, getMainComponentName()) { @Override protected ReactRootView createRootView() { return new RNGestureHandlerEnabledRootView(MainActivity.this); } }; }}

 

三、 undefined is not an object (evaluating 'RNGestureHandlerModule.State')

  以及 undefined is not an object (evaluating 'RNGestureHandlerModule.Direction')

相关错误都是因为react-native-gesture-handler没有配置好  

 

转载于:https://www.cnblogs.com/nangezi/p/10625504.html

你可能感兴趣的文章
JavaScript 技巧与高级特性
查看>>
Uva 11729 Commando War
查看>>
增强学习(一) ----- 基本概念
查看>>
ubuntu下USB连接Android手机
查看>>
C# 语句 分支语句 switch----case----.
查看>>
反射获取 obj类 的属性 与对应值
查看>>
表单中的readonly与disable的区别(zhuan)
查看>>
win10下安装配置mysql-8.0.13--实战可用
查看>>
周记2018.8.27~9.2
查看>>
MySQL中 1305-FUNCTION liangshanhero2.getdate does not exit 问题解决
查看>>
Ctrl+Alt+Down/Up 按键冲突
查看>>
python序列化和json
查看>>
mongodb
查看>>
网格与无网格
查看>>
SSH-struts2的异常处理
查看>>
《30天自制操作系统》学习笔记--第14天
查看>>
LGPL协议的理解
查看>>
1、Python基础
查看>>
Unity The Tag Attribute Matching Rule
查看>>
试着理解下kvm
查看>>