I want to hide status bar whenever InAppBrowser is presented.
when i close the InAppBrowser status bar should be displayed.
Below is my code:
const InAppBrowserDefaultOptions: InAppBrowserOptions = {
usewkwebview: 'yes',
location: 'yes',
toolbarposition: 'top',
toolbarcolor: '#ffffff',
fullscreen: 'no',
footer: 'no',
hideurlbar:'yes'
};
this.iabOptions = this.platform.is('ios')
? {
...InAppBrowserDefaultOptions,
location: 'no'
}
: InAppBrowserDefaultOptions;
const iabInstance = this.iab.create(
onChangePasswordUrl,
'_blank',
this.iabOptions
);
What i tried the below one it is not working:
1. this.statusBar.overlaysWebView(false);
2. this.statusBar.hide();
Expected: status bar should hide when inappbrowser appears
Hi, were you able to fix it? I am going through the same problem.