How to hide expo default splash screen

Hi, what I need to do is very simple but I still cannot find a way, in fact I have my own splash screen that load the data from my API/Cache in my expo app so I don’t want the splash screen generated by expo, is there a way to disable it ?

Thank you :slight_smile:

As far as I know there’s no way to disable the splash screen. I think it’s needed so that there’s something displayed while React Native loads/initialises, so I don’t think you could really replace it with your own code that loads data from your API because your code could only run after React Native is ready. However, you can tell Expo to keep showing the splash screen until after you have finished loading your data. See also the other example on the same page.