You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2021/02/27 22:32:30 UTC

[GitHub] [cordova-plugin-inappbrowser] aaayushsingh commented on issue #598: [Android] Statusbar disappear after inappbrowser window opened (go in full screen)

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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org