Home > Back-end >  Change status bar icons color Flutter
Change status bar icons color Flutter

Time:01-07

Is it possible to change these icons color in IOS?

IOS Status bar Icons

CodePudding user response:

You can use SystemChrome

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
    statusBarIconBrightness: Brightness.light,
  ));

CodePudding user response:

There are several ways to change the appearance of the status bar. If the application has an AppBar, you can set the backgroundColor and brightness arguments of the AppBar to change the style. If the application doesn't have an AppBar, you can use SystemChrome.setSystemUIOverlayStyle or AnnotatedRegion<SystemUiOverlayStyle>

  •  Tags:  
  • Related