I am currently building a News Aggregator App and I am using InAppBrowser for people to read the articles. Now, my questions is: Can I remove the URL and Navigation Bar? Als
const options: InAppBrowserOptions= { zoom: 'no', hideurlbar: 'yes', // hide the url toolbar hidenavigationbuttons: 'yes', // hide navigation buttons back/forward } const browser = this.iab.create(url,'_self',options);