Snowbunny opened a new issue #284:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/284
I'm trying to hide the default cordova splash screen. Using iOS 13.1.3.
Tried multiple configurations but nothing seems to work.
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="0" />
<preference name="FadeSplashScreen" value="false"/>
<preference name="FadeSplashScreenDuration" value="0"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
and
<preference name="AutoHideSplashScreen" value="false" />
<preference name="SplashScreenDelay" value="0" />
<preference name="FadeSplashScreen" value="false"/>
<preference name="FadeSplashScreenDuration" value="0"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
// with or without timer, tried multiple values 0, 50ms
app.on("start", function() {
navigator.splashscreen.hide();
setTimeout(function() {
navigator.splashscreen.hide();
}, 0);
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]