Skip to content

Instantly share code, notes, and snippets.

@wilmerterrero
Forked from codigoconjuan/index.js
Created March 27, 2021 16:31
Show Gist options
  • Select an option

  • Save wilmerterrero/24748e5261619409f649afd055ce107d to your computer and use it in GitHub Desktop.

Select an option

Save wilmerterrero/24748e5261619409f649afd055ce107d 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