DaxDev
DaxDev

Reputation: 651

How to put iOS app in full screen

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

enter image description here

Upvotes: 2

Views: 2830

Answers (1)

raj peer
raj peer

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

Related Questions