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

Popular posts from this blog

Flutter Bloc - Clean Architecture

What's new in android 14?

Dependencies vs Dev Dependencies in Flutter