- Open
Info.plist. - Add row with key
View controller-based status bar appearanceand valueNOif not present. - Add row with key
Status bar is initially hiddenwith valueYESif not present. - Save and run the project.
Created
July 13, 2016 00:16
-
-
Save remarkablemark/95f4d09feebd92ac876103fef9be6114 to your computer and use it in GitHub Desktop.
How to hide the status bar in the iPhone Simulator.
If you're using Flutter, you can edit the info.plist file directly by adding these two lines nested in the dict tag:
<dict>
...
<key>UIStatusBarHidden</key>
<true/>
</dict>Thank you :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice. Thank you!