I've completed an Ionic 4 app which utilizes the InAppBrowser and it works fine on iOS device when the target is _self but when the target is _blank the InAppBrowser attempts to load the web page but remains on a white screen.
I've installed
ionic cordova plugin add cordova-plugin-inappbrowser
npm install @ionic-native/in-app-browser
I've imported on the corresponding ts page and in app.module.ts
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
I've declared it as a provider in app.module.ts
providers: [
InAppBrowser,
StatusBar,
SplashScreen,
CallNumber,
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
],
Here is the code
const browser = this.iab.create('https://www.google.com', '_blank');
browser.show();