How to make my ionic4 project to load in full-screen mode in the mobile browser?

I am using ionic 4 with angular for my newly created project. If my project loads in the mobile browser I want to hide the top and bottom bar or navigation of the browser which will make my website more native-mobile app like feels. But I don’t know how to do that. I am new to Ionic. Please help me.

Upvotes: 1

Views: 1739

Answers (1)

jcmendes98
jcmendes98

Reputation: 148

If you want to make your app fullscreen, on your config.xml file add: <preference name="fullscreen" value="true" />

Upvotes: 2

Related Questions