Skip to content

ismaelsousa/Vacinadx

Repository files navigation

react native logo

RN APP

# This project is to learn react-native framework

React-Native

  • Version ~> "0.64.1"

🏗 Running

  • Pre running (Android|Ios)
    • run npm install
  • IOS:
    • run npx pod-install && npx react-native run-ios
  • Android:
    • run npx react-native run-android

Folder structure

app
.
├── __tests__   
├── android                     # Native android files
├── ios                         # Native ios files
├── src                         # Source files
│   ├── @types                  # Contains all global definitions of types and interfaces
│   ├── assets                  # Contains Js bundles assets. e.g: icons, splash, images etc...
│   ├── components              # Contains all global react components
│   ├── context                 # All contexts
│   ├── constants               # Constants files
│   ├── hooks                   # Cstomized hooks
│   ├── navigation
│   ├── screens
│   ├── services                # Contains external and api services
│   ├── App                     # Aplication entry
.
.
├── index                       # Bundle entry
.
.
└── README.md