【发布时间】:2020-04-22 02:28:51
【问题描述】:
$window.open(encodeURI(ENV.liveSite), '_blank', 'location=yes,clearcache=yes,clearsessioncache=yes,hideurlbar=yes,toolbarcolor=#e85147');
【问题讨论】:
标签: ionic-framework inappbrowser
$window.open(encodeURI(ENV.liveSite), '_blank', 'location=yes,clearcache=yes,clearsessioncache=yes,hideurlbar=yes,toolbarcolor=#e85147');
【问题讨论】:
标签: ionic-framework inappbrowser
还有另一个可用的插件是 Theme ThemeableBrowser
Func(){
const options: ThemeableBrowserOptions = {
statusbar: {
color: '#ffffffff'
},
toolbar: {
height: 44,
color: '#f0f0f0ff'
},
title: {
color: '#003264ff',
showPageTitle: true
}
}
const browser: ThemeableBrowserObject = this.themeableBrowser.create('https://ionic.io', '_blank', options);
}
【讨论】: