Hello,
I installed inappbrowser on ionic capacitor project
“@awesome-cordova-plugins/in-app-browser”: “^5.41.0”,
“cordova-plugin-inappbrowser”: “^5.0.0”,
the events are called inside the inappbrowser on Android and everything works fine also on Ios Ipad but on Iphone’s the inappbrowser event’s are only called when i closed it.
Can anyone help me?
const browser = await this.iab.create(url, ‘_blank’, { location: ‘no’,fullscreen:“no”, toolbar:“yes”});
browser.on(‘loadstart’).subscribe( (event) => {
alert(“start”)
});
browser.on(‘loadstop’).subscribe((event) => {
alert(“stop”)
});