How to build
- Install react native https://reactnative.dev/docs/getting-started
- Create new project
npx react-native init <yourProjectName> --template react-native-template-typescript
- Copy all file to your project without
package.json
andpreview.gif
files - Modify your
package.json
:- Replace your
script
tag by myscript
tag - Append my
dependencies
tag to yourdependencies
tag - Replace your
devDependencies
by mydevDependencies
tag
- Replace your
- Install package
npm install
oryarn
oryarn yarn-ios
(ios) (recommended) - Run your app
npx react-native run-android/ios
oryarn android/ios
ornpm run android/ios
- This boilerplate uses libraries react native reanimated and react-native-gesture-handle. Please follow their installation instructions.