Skip to content

hu2di/react-native-learning

Repository files navigation

react-native-learning

Learning react-native basic with many example

  1. Hello World project
  2. Props, Component tutorials
  3. State in React Native
  4. Dialpad view
  5. Note app
  6. Chat view app
  7. Login view client and server
  8. Image
  9. E Commerce
  10. Component LifeCycle

install react-native

install note.js
npm install -g react-native-cli

init project

react-native init HelloWorld
cd HelloWorld
react-native start

build on Android or iOS

react-native run-android
react-native run-ios

Running React Native Project On Physical Device

open command window
cd to folder ..\sdk\platform-tools
adb reverse tcp:8081 tcp:8081

About