A React Native app about room air quality.
.
├── __tests__
│ └── App-test.tsx
├── screenshots
│ ├── screenshot-1.png
│ └── screenshot-2.png
├── scripts
│ └── stfu.js
├── src
│ ├── assets
│ │ ├── cloudy.jpeg
│ │ ├── cloudy.svg
│ │ ├── menu.svg
│ │ ├── moon.svg
│ │ ├── night2.jpg
│ │ ├── rain.svg
│ │ ├── rainy.jpg
│ │ ├── search.svg
│ │ ├── sun.svg
│ │ ├── sunny.jpg
│ │ └── weather.png
│ ├── components
│ ├── models
│ │ └── locations.ts
│ ├── pages
│ │ ├── Chart.tsx
│ │ └── List.tsx
│ ├── routes
│ │ ├── Router.tsx
│ │ └── routes.ts
│ ├── types
│ │ └── index.ts
│ ├── typings
│ │ └── file.d.ts
│ ├── utils
│ │ ├── config.ts
│ │ └── request.ts
│ └── App.tsx
├── LICENSE
├── README.md
├── app.json
├── babel.config.js
├── index.js
├── metro.config.js
├── package.json
├── tsconfig.json
└── yarn.lock
12 directories, 34 files
# git clone
git clone https://github.com/varandrew/my-home.git
# change dir
cd my-home
# install dependencies
yarn
# postinstall
yarn postinstall
# link
yarn link
# serve with hot reload at ios
yarn ios
For detailed explanation on how things work, checkout the guide and docs for react.