- React Native Basic Tutorial
- React Native Cheatsheet
- React Native Styling Cheatsheet
- Expo SDK API
- Ignite CLI
- Setup CLIs
npm i -g react-native-cli
npm i -g ignite-cli
- Setup Expo XDE
Go to https://github.com/expo/xde to download & install Expo XDE tool which helps create & debug app on mobile
- Install Expo Client
Go to App Store/Google Playstore, find and install
Expo Client
app on your Iphone/Android device
- Clone source code from this repository to your PC
git clone https://github.com/truonggiangdao/rn-expo-base.git
- Remove .git folder on your source code (so that you can use on your project GIT repo)
cd rn-expo-base
rm -rf ./.git
- Install package dependencies
npm i
- Open Expo XDE on your PC and run this project
This project is setted up with following Style guides:
To run code checking (linting):
npm run lint
Each components in your project should have a test file. Naming convention: yourComponent.test.js
where yourComponent
is the name of the component you are writing test for. To run unit test:
npm run test