mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-24 20:28:21 +00:00
24 lines
372 B
Markdown
24 lines
372 B
Markdown
|
# FastImage Example
|
||
|
|
||
|
FastImage example app showing usage and comparing against `Image`.
|
||
|
|
||
|
## Running FastImage Example
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/DylanVann/react-native-fast-image
|
||
|
cd react-native-fast-image
|
||
|
yarn
|
||
|
|
||
|
# Starting the image server.
|
||
|
cd server
|
||
|
yarn
|
||
|
yarn start
|
||
|
|
||
|
# In another terminal.
|
||
|
|
||
|
# Starting the example app.
|
||
|
cd example
|
||
|
yarn
|
||
|
react-native run-ios
|
||
|
```
|