Reputation: 825
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
Reputation: 148
If you want to make your app fullscreen, on your config.xml
file add: <preference name="fullscreen" value="true" />
Upvotes: 2