From 32dfcc0638970ec43dfd6d642c61c7c90679037c Mon Sep 17 00:00:00 2001 From: Alican Ali <44370554+AliAlican@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:47:10 +0100 Subject: [PATCH] update: README.MD Added expo installation instructions to README.MD file --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 6b909e19c..97413fc88 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,23 @@ const YourImage = () => ( ) ``` +## Expo +Install the packages: +``` +expo install react-native-fast-image expo-dev-client +``` +Build the native app: + +In the cloud (expo build does not support custom builds): +``` +eas build -p all --profile development +``` +Or locally with +``` +expo run:ios and expo run:android +``` +To be clear, react-native-fast-image will not have been added to the Expo Go app that you download from the App Store or Google Play Store. + ## Are you using Glide already using an AppGlideModule? - [Are you using Glide already using an AppGlideModule?](docs/app-glide-module.md) (you might have problems if you don't read this)