InAppBrowser not working in DevApp for iOS 11

Is it a known issue that InAppBrowser doesn’t not work in DevApp for iOS 11?

It works for Android in DevApp. And it works for iOS 11 in Ionic View.

My code is very simple:

this.url = “http://google.com”;
const browser = this.inAppBrowser.create(url, ‘_blank’, ‘location=yes’);
browser.show();

const watchLoadStart = browser.on(‘loadstart’).subscribe(function(event) {
console.log(‘loadstart’);
});

After I click the Open Webpage link, a blank window comes up. The bottom of the window displays “Loading…”. It stays there forever, the ‘loadstart’ event is never fired.

Thanks for the helps.

1 Like