I would like to hide in my app virtual navigation button for devices which does not have analog buttons (see image below).
How can i do it in Cordova (Ionic) please?
I would like to hide in my app virtual navigation button for devices which does not have analog buttons (see image below).
How can i do it in Cordova (Ionic) please?
I found this cordova plugin cordova-fullscreen-plugin can help you.But it only support Android 4.4+.
// Hide system UI and keep it hidden (Android 4.4+ only) AndroidFullScreen.immersiveMode(successFunction, errorFunction);
And your question is duplicate with Making an Android app fullscreen with Cordova