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.
Asked
Active
Viewed 41 times
0
-
Does [How to change status bar color in Flutter?](https://stackoverflow.com/q/52489458/10157127) answer your question – Md. Yeasin Sheikh Dec 29 '22 at 17:17
-
yes it does, thanks to both of you! – Laddybug Little Dec 29 '22 at 17:28
1 Answers
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