My ionic 3 app is locking on the Splash Screen screen in IOS

1

my ionic app 3, is locking on the Splash Screen screen in IOS. time it opens perfectly, time it gets caught on the screen.

The problem persists only in IOS on Android works perfectly.

initializeApp() {
   this.platform.ready().then(() => {
     this.config.set('', 'backButtonText', '');
     this.statusBar.styleDefault();
     if (this.platform.is('android')) {
       this.statusBar.overlaysWebView(false);
       this.statusBar.backgroundColorByHexString('#000000');
   }
     this.initBackButton();
    });
 }

 ngAfterViewInit(): void {
   this.splashScreen.hide();
 }

 openHome() {
   this.nav.popToRoot();
 }
    
asked by anonymous 25.01.2018 / 13:38

0 answers