Starting With React Native

Starting With React Native

Installed React Native

Followed the installation guide of Hitesh Choudhary Sir Hitesh Choudhary

  • Installed Android Studio and some SDK

  • Installed Node Js and Java JDK

  • Setup Environment Variables

  • Installed React Native CLI

      npm install -g react-native-cli
    

First App

  1. Create a new react native project

     npx react-native@latest init AwesomeProject
    
  2. Run the project after it is created.

     npx react-native run-android
    

Refer to the installation guide of Hitesh Choudhary on Youtube or React Native documentation.