statusbar_color 0.0.1
statusbar_color: ^0.0.1 copied to clipboard
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.
statusbar_color #
The package now supports to android v2 embedding, thanks to vixez
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.
This is a modernized version of the flutter_statusbarcolor package, updated for Null Safety, featuring iOS App Store safe APIs, and extended with Web platform support.
Getting Started #
// change the status bar color to material color [green-400]
await FlutterStatusbarcolor.setStatusBarColor(Colors.green[400]);
if (useWhiteForeground(Colors.green[400])) {
FlutterStatusbarcolor.setStatusBarWhiteForeground(true);
} else {
FlutterStatusbarcolor.setStatusBarWhiteForeground(false);
}
// change the navigation bar color to material color [orange-200]
await FlutterStatusbarcolor.setNavigationBarColor(Colors.orange[200]);
if (useWhiteForeground(Colors.orange[200]) {
FlutterStatusbarcolor.setNavigationBarWhiteForeground(true);
} else {
FlutterStatusbarcolor.setNavigationBarWhiteForeground(false);
}
// get statusbar color and navigationbar color
Color statusbarColor = await FlutterStatusbarcolor.getStatusBarColor();
Color navigationbarColor = await FlutterStatusbarcolor.getNavigationBarColor();

Details in the example/ folder.
Api level minimum requirement #
-
Android
- getStatusBarColor (5.0)
- setStatusBarColor (5.0)
- setStatusBarWhiteForeground (6.0)
- getNavigationBarColor (5.0)
- setNavigationBarColor (5.0)
- setNavigationBarWhiteForeground (8.0)
-
iOS
- getStatusBarColor (7+)
- setStatusBarColor (7+)
- setStatusBarWhiteForeground (7+)
-
Web
- getStatusBarColor
- setStatusBarColor (sets browser meta theme-color)
Note that #
- If you find the foreground brightness reverted after changing the app lifecycle, please use flutter's WidgetsBindingObserver mixin.
- If iOS build does not work, please send issues or pull requests.