Wait until image downloaded

I have a splash screen animation, and my images won’t show before downloaded from expo server. which makes my animation strange.(even in my standalone app)

so I need to await for my images downloaded… and I can’t find any documentation of it.

any ideas?

Have you seen this yet: https://docs.expo.io/versions/latest/guides/preloading-and-caching-assets.html ?? :slight_smile:

Okay i got solved thx for the document… i dont know why i couldnt get there…

but in my case AppLoading didn’t work, so managed to solve by
Asset.fromModule(image).downloadAsync(); in componentDidMount

1 Like