Cordova InAppBrowser - How to disable URL and Navigation Bar?

前端 未结 7 1206
眼角桃花
眼角桃花 2020-11-30 23:23

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

7条回答
  •  不知归路
    2020-12-01 00:23

    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);
    

提交回复
热议问题