mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 12:18:12 +00:00
32 lines
596 B
Markdown
32 lines
596 B
Markdown
|
# Development
|
||
|
|
||
|
For now this uses a modified cli to work around issues with symlinked packages.
|
||
|
|
||
|
This is how to start the example app so you can test code with it.
|
||
|
|
||
|
```bash
|
||
|
# In the repo root folder.
|
||
|
# Install dependencies.
|
||
|
yarn
|
||
|
|
||
|
# Link module.
|
||
|
yarn link
|
||
|
|
||
|
# Move to example folder.
|
||
|
cd ReactNativeFastImageExample
|
||
|
|
||
|
# Install dependencies.
|
||
|
yarn
|
||
|
|
||
|
# Link module.
|
||
|
yarn link react-native-fast-image
|
||
|
|
||
|
# Start packager.
|
||
|
yarn start
|
||
|
|
||
|
# Start the iOS app.
|
||
|
yarn react-native run-ios
|
||
|
# Start the android app.
|
||
|
yarn react-native run-android
|
||
|
# You will need to re-run those commands to re-compile native code.
|
||
|
```
|