Hi, How can I disable auto full screen when a specific page has in-app browser?
I want to insert it on my

my .ts
constructor(public navCtrl: NavController, public navParams: NavParams,private iab: InAppBrowser) {
this.openWebPage();
}
openWebPage() {
const options : InAppBrowserOptions = {
zoom: 'no'
}
const browser = this.iab.create('https://ionicframework.com/', '_self', options);
}
The InAppBrowser is full screen by design.
You might want to try an iframe
- although the user experience with that won’t be the best.
I tried using iframe but it’s not showing.
Did you remote debug the problem on the device already?
Follow these instructions here to debug the problem in Safari dev tools:
https://ionic.zone/debug/remote-debug-your-app#ios
Follow these instructions here to debug the problem in Chrome dev tools:
https://ionic.zone/debug/remote-debug-your-app#android
Look at the console and network tabs for errors.
rihm92
5
when close in app browser show blank page in ionic 3