@brightlayer-ui/react-native-template-routing-typescript 2.2.0-alpha.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +17 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -24,4 +24,21 @@ Projects created using this template will start out with the following file stru
|
|
|
24
24
|
└── /router
|
|
25
25
|
|── index.tsx // sets up routing
|
|
26
26
|
└── navigation-drawer.tsx // sets up Drawer
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Clear Metro bundler cache (recommended)
|
|
30
|
+
|
|
31
|
+
Run the command into the root of the created project.
|
|
32
|
+
```sh
|
|
33
|
+
yarn start --reset-cache
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Android
|
|
37
|
+
This template supports the latest version of the react-native-reanimated package, which needs to reinstall the NDK module from Android Studio. You can do this via Android Studio: Go to Tools -> SDK Manager -> SDK Tools. And Reinstall or install `23.1.7779620` NDK version.
|
|
38
|
+
|
|
39
|
+
### iOS
|
|
40
|
+
|
|
41
|
+
Make sure to install pods first before running the app.
|
|
42
|
+
```sh
|
|
43
|
+
cd ios && pod install && cd ..
|
|
27
44
|
```
|