Is icon color defined by iconTheme in ThemeDada? For instance, I defined it the way like this
darkTheme: ThemeData.dark().copyWith(
primaryColor: Color(0xff64ffda),
iconTheme: IconThemeData(
color: Colors.pink,
),
),
But the icon color is white in the folowing example for dark theme mode
Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Icons.save,
),
],
),