0

Is it possible to change these icons color in IOS?

IOS Status bar Icons

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56
Omach
  • 43
  • 6

2 Answers2

1

You can use SystemChrome

  systemOverlayStyle: SystemUiOverlayStyle(
   statusBarBrightness: Brightness.light, // For iOS: (dark icons)
   statusBarIconBrightness: Brightness.dark, // For Android: (dark icons)
  ),
Rohith Nambiar
  • 2,957
  • 4
  • 17
  • 37
0

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>

  • Tried these solutions but still can't figure out a way to change it for ios, it can be changed when I do have an AppBar but in this case am trying not to use appbars in the project. – Omach Jan 11 '22 at 07:50