Reputation: 3
I have done my research on this but it seems as if it isn't possible. As the options that Cordova provides for editing the location bar are only:
So is there a way to change the background-color of the location bar of the InAppBrowser?
Upvotes: 0
Views: 1013
Reputation: 30366
You can use the themeablebrowser fork of cordova-plugin-inappbrowser to do this:
cordova plugin add cordova-plugin-themeablebrowser
then
cordova.ThemeableBrowser.open('http://apache.org', '_blank', {
toolbar: {
color: '#ff0000ff' //RGBA
}
);
Upvotes: 2