'How to hide navigation bar on Android app Built Using Cordova? [duplicate]
How do we hide the navigation bar on android or customize it on cordova , Can anyone suggest?
Solution 1:[1]
you should be able to just remove the nav section, but if you want to do it in javascript, change the style to display:none. in jquery: $("nav").hide();
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | terrencep |
