I want to Hide URL and change the color of URL bar with Close button, Help me out
if(ext == 'jpg' || ext == "jpeg" || ext == "png")
this.platform.ready().then(() => {
this.iab.create(url, "_self");
});
I want to Hide URL and change the color of URL bar with Close button, Help me out
if(ext == 'jpg' || ext == "jpeg" || ext == "png")
this.platform.ready().then(() => {
this.iab.create(url, "_self");
});
The 3rd options parameter will enable you to do this - see the InappBrowser plugin documentation for details:
this.iab.create(url, "_self", "hideurlbar=yes,closebuttoncolor=#00ff00");