In my AppBar the title is displayed with white text, but the icons are a dark grey or something. I Would like to have the icons white, too.
But the colors in the icon themes have no effect!
Not when added directly to the AppBar...
Scaffold(
appBar: AppBar(automaticallyImplyLeading: false,
actionsIconTheme: IconThemeData(color: Colors.white),
iconTheme: IconThemeData(color: Colors.white),
and also not in the theme...
appBarTheme: AppBarTheme(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
actionsIconTheme: IconThemeData(color: Colors.white),
iconTheme: IconThemeData(color: Colors.white),
),
I would like to get the themes working! Setting the color individually on the icons is not an option.
What am I doing wrong? Is Material 3 really production ready?
Thanks!
Note: This is a Material 3 problem! In Material 2 everything works as expected!