Skip to content

Instantly share code, notes, and snippets.

@jorneycr
Forked from codigoconjuan/index.js
Created April 1, 2024 19:39
Show Gist options
  • Save jorneycr/f0ad919e0941689fe25d0b1f057e988b to your computer and use it in GitHub Desktop.
Save jorneycr/f0ad919e0941689fe25d0b1f057e988b to your computer and use it in GitHub Desktop.
Guía para instalar React Navigation 5
// Instalar react-navigation/native
npm install @react-navigation/native
// Instalar las dependencias
npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view
// Instalar navegación en Stack
npm i @react-navigation/stack
// Si desarrollas una app para iOS
cd ios/
pod install
// En Android android/app/build.gradle
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'
// en el App.js
import 'react-native-gesture-handler';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment