Hi all,
I want to use fullscreen on android (hiding the status bar(=top) and navigation bar(=bottom).
I placed this in config.xml:
<preference name="Fullscreen" value="true"/>
Everything is working fine until I click on an inputfield and the Keyboard pops open. It then shows both status and nav bar.
Trying to fix this I placed this In app.components.ts:
import { Splashscreen } from 'ionic-native'; if (this.platform.is('android')) { StatusBar.hide(); }
This will hide the statusbar after the keyboard pops but the navigation bar will stay in place.
I tried using https://github.com/mesmotronic/cordova-plugin-fullscreen but AndroidFullScreen is not defined.
How can I get the navigation bar to hide?
Thanks,
PJ