Merge pull request #1152 from esteemapp/bugfix/android-navbar

Fixed android navbar color
This commit is contained in:
uğur erdal 2019-09-12 20:46:44 +03:00 committed by GitHub
commit 3e623e8023
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,7 @@ class ApplicationContainer extends Component {
if (nextProps.isDarkTheme) { if (nextProps.isDarkTheme) {
changeNavigationBarColor('#1e2835'); changeNavigationBarColor('#1e2835');
} else { } else {
changeNavigationBarColor('#FFFFFF'); changeNavigationBarColor('#FFFFFF', true);
} }
} }