I am trying to remove the status bar across my app with Cordova. I have tried <preference name="Fullscreen" value="true" />
but it looks like in iOS7 that does not work. (And iOS6 it left a black gap instead.)
I have since been using the StatusBar plugin and just firing StatusBar.hide();
at device ready, but this will not hide the status bar on the launch screen. Is there a way to hide the status bar across the entire app in iOS7 and not have to rewrite it each time I do a cordova build? Thank you.