Stack Overflow en español Asked by JOSE HERRADA on November 29, 2020
Qué tal chicos? Tengo un problema, en mi proyecto de ionic he creado un splasscreen en mi app, quiero que ese splashscreen se mantenga activa mientras la aplicacion se inicialice completamente.
app.component.ts
import { timer } from 'rxjs';
estoy importanto timer para controlar el tiempo que el splashscreen este activo
export class AppComponent implements OnInit {
showSplash = true;
initializeApp() {
this.platform.ready().then(() => {
this.statusBar.styleDefault();
this.splashScreen.hide();
timer(10000).subscribe(() => this.showSplash = false); -> aqui esta el problema
});
}
}
Lo que yo quiero es que
El SplashScreen se mantenga activa hasta que la aplicacion se inicialice completamente y no por un tiempo definido por ti
Porque no controlas el tiempo que quieres que tu splash este activo en con <preference name="SplashScreenDelay" value="10000" />
en el archivo config.xml
esto lo que hará es que mostrara el splash hasta que se agote el tiempo.
Correct answer by Javier Hernández on November 29, 2020
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP