0

Can the background color of system icons be changed? I know I can change icon color, but I can't find any option to change the background color. See image for clarification.

image

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56

1 Answers1

1

You can change this by specifying the systemOverlayStyle inside the appBar

AppBar(
  systemOverlayStyle: SystemUiOverlayStyle(
    statusBarColor: Colors.green, //  Add your color here
  ),
)
krishnaacharyaa
  • 14,953
  • 4
  • 49
  • 88