I am using Cordova StatusBar and SplashScreen . I want the application to start full screen mode, i.e. The status bar was hidden when the application started.
In the deviceready I call StatusBar.hide() , and later I use StatusBar.show() to display the status bar again. It works great.
The problem is when a popup image appears, a status bar is displayed. And with the deviceready at startup, the status bar is hidden. I even tried setting Fullscreen in config.xml to true, but the result is the same. Hide at Startup configuration is also only associated with iOS.
Is there a way (using only Cordoba) to launch the application without a status bar and show it later?
Note. I use the SplashScreen plugin to display a splash screen
source share