手把手教你学RN-路由Navigation-step2

在项目中添加多页面,实现页面之间的跳转 .经常要用到路由

React Navigation

  1. RN 0.6.0 以上的 安装。
npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view

npm install @react-navigation/stack
  1. 进入到项目 IOS下 使用初始化。
pod-install
  1. 在入口文件App.js 里面引入
import 'react-native-gesture-handler';

你可能感兴趣的:(javascript,react.js,node.js)