Make Android statusbar darker
This commit is contained in:
parent
acd7d915cf
commit
2ca483a616
@ -102,7 +102,11 @@ function setAppTheme(theme) {
|
||||
$("#app").removeClass("theme-dark");
|
||||
if (platform_type == "cordova" && typeof StatusBar !== 'undefined') {
|
||||
StatusBar.styleDefault();
|
||||
StatusBar.backgroundColorByHexString("#d0f2fc");
|
||||
if (device.platform == "Android") {
|
||||
StatusBar.backgroundColorByHexString("#9ebfc9");
|
||||
} else {
|
||||
StatusBar.backgroundColorByHexString("#d0f2fc");
|
||||
}
|
||||
}
|
||||
} else if (theme == "dark") {
|
||||
$("#app").addClass("theme-dark");
|
||||
|
Loading…
x
Reference in New Issue
Block a user