Flutter - Change the status bar color.
I'm still being in long pandemic. It's worst, but I've no option. Keep learning, Keep Moving...
Today will see gonna see about to change the status bar color in Flutter.
In main method, add following code.
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
systemNavigationBarColor: Colors.white, // navigation bar color
statusBarColor: Colors.black, // status bar color
statusBarIconBrightness: Brightness.dark, // status bar icons' color
systemNavigationBarIconBrightness: Brightness.dark, // icon brightness mode.
));
Comments