Splash screen problems with detached app

On iOS, I have a LaunchScreen.xib file as specified by: https://docs.expo.io/versions/v26.0.0/guides/splash-screens#detached-expokit-apps

Note: I am on SDK 26 and cannot update my version right now. I am a detached app that was not using the splash API before I detached. And yes I deleted the isSplashScreenDisabled key.

What happens

My LaunchScreen.xib screen shows up but then there is a loading indicator:

Then after that loading indicator I get this splash screen from my “app.json” file without my “image” though:

What I expect

I want my splash screen to show consistently throughout the entire loading process.

(1) I don’t want that loading indicator to show up.
(2) I want the image to show up in my app.json file as seen below:

"splash": {
      "backgroundColor": "#3E8EE1",
      "image": "./assets/splash.png",
      "resizeMode": "contain"
    },

Never mind after doing a search for isSplashScreenDisabled I did not delete this key that was the problem.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.