aaayushsingh commented on issue #598: URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/598#issuecomment-787197980
For anyone still facing this, According to [Cordova plugin page](https://cordova.apache.org/docs/en/10.x/reference/cordova-plugin-inappbrowser/) > fullscreen: Sets whether the InappBrowser WebView is displayed fullscreen or not. In fullscreen mode, the status bar is hidden. Default value is **yes**. so, in order to keep status bar visible, pass `fullscreen: "no"` in options ``` let browser = this.inAppBrowser.create( "https://github.com "_target", { zoom: "no", location: "no", fullscreen: "no" } ); ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
