So much time between splash and the app running

Hi, when I run the app, after the splash , take so much time with a white screen ¿There are a way or trick to show some text or image while app run?

Try turning of the splash screen in your code instead of a delay.
That way the Splashscreen will only disapear if your app is done loading.

this.splashScreen.hide();
see https://ionicframework.com/docs/native/splash-screen/

config.xml:

<preference name="AutoHideSplashScreen" value="false" />

see https://github.com/apache/cordova-plugin-splashscreen#preferences

Thanks so much!!! Works!!!