Home > Software design >  React Native Bundle download screen
React Native Bundle download screen

Time:10-23

I'm working on a React Native app. I would like to show a loading screen while Downloading JavaScript Bundle instead of blank white screen, in both iOS and Android. Is it possible to do it in RN?

CodePudding user response:

This screen is only displayed in the emulator. It is not displayed in the productive app (app already compiled). You can edit the loading screen (Splash Screen). For example with Expo https://docs.expo.dev/guides/splash-screens/

  • Related