I need to open website in app not in other browser but its always opening in google chrome app.
constructor(private iab: InAppBrowser) { const options: InAppBrowserOptions = { zoom: 'no', fullscreen: "yes", hidenavigationbuttons: "no", toolbar:'no', hideurlbar: 'yes', } const browser = this.iab.create('https://surveyor.igiinsurance.com.pk/', '_blank',{ toolbar: 'no', hideurlbar: 'yes', fullscreen: "yes",location:"no", options}); browser.show(); } }