Answers for "create react native app"

4

how to run react native app

react-native run-android 
react-native run-ios
Posted by: Guest on August-23-2020
0

create react native app

expo init my-project
//or
create-react-native-app my-project

cd my-project

//install react native navigation
npm install @react-navigation/native
npm install @react-navigation/stack

expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
Posted by: Guest on February-10-2021
1

create react native app npx

npx create-react-native-app
Posted by: Guest on June-08-2020
0

how to create a new react native project

$ npx react-native init firstapp
Posted by: Guest on May-13-2020
0

how to create react native app

npm i -g expo-cli
expo init AppName
Posted by: Guest on September-07-2021
0

get started with react native

//get started with react native app for android on macOS
brew install node
brew install watchman
brew cask install adoptopenjdk/openjdk/adoptopenjdk8
//add the following to ~/.bash_profile & ~/.zshrc
export ANDROID_HOME=$HOME/Users/junglesoft/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools
//add the following to local.properties file at android/app level
sdk.dir=/Users/junglesoft/Library/Android/sdk
//launch app
npx react-native init ProjectName
//run on virtual android
npx react-native run-android

##GO TO: https://aboutreact.com/react-native-vector-icons/##
Posted by: Guest on July-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language