InappBrowser: Keeps saying Loading

Hello,

Using code below, opens the inAppBrowser, with the given URL, but when opened; i cannot scroll or does not have a back button (Worked without problems in ionic v1)

Does anyone knowthis?

 import { InAppBrowser } from '@ionic-native/in-app-browser';

....

  scanCode() {
    
    this.barcodeScanner.scan().then(barcodeData => {
      console.log('Barcode data', barcodeData.text);
      const browser = this.iab.create(barcodeData.text, "_blank", "hardwareback=yes,location=yes,closebuttoncaption=Terug");


     }).catch(err => {
         console.log('Error', err);
     });

  
  }