简体   繁体   中英

Ionic app got stuck on white screen after splash screen

I have developed one ionic application, which get stucks after splash screen. App continuously shows white screen.

My code from confid file is as below

    <preference name="SplashScreen" value="screen" />
    <preference name="ShowSplashScreenSpinner" value="false" />
    <preference name="OverrideUserAgent" value="Chrome/41.0.2228.0" />
    <preference name="AutoHideSplashScreen" value="false" />
    <preference name="SplashScreenDelay" value="10000" />
    <preference name="ShowSplashScreen" value="false" />
    <preference name="FadeSplashScreen" value="false" />
    <preference name="ScrollEnabled" value="false" />
    <preference name="AutoHideSplashScreen" value="false" />

Typically in the app.component.ts class constructor:

this.platform.ready().then(() => {
  this.splashScreen.hide();
}); 

Please help me

尝试将其更改为

<preference name="SplashScreenDelay" value="75000" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM