Make Android statusbar darker

master
Skylar Ittner 3 years ago
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…
Cancel
Save