Reputation: 651
I would like to know how to remove the status bar under ios please. On android I do not have this problem, but on iOS the status bar is still visible.
Thank you in advance for your answers
Upvotes: 2
Views: 2830
Reputation: 728
ionic.Platform.fullScreen();
Or
//add the following code in config.xml file
<platform name="android">
<preference name="Fullscreen" value="true" />
</platform>
Upvotes: 2