change icon color flutter code example
Example 1: change icon color flutter
Icon(
Icons.widgets,
color: Colors.blue.shade400,
)
Example 2: how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
Example 3: change color icon tabbar flutter
appBar: AppBar(
brightness: Brightness.dark,
iconTheme: IconThemeData(color: Colors.white),
title: Text("Title TabBar"),
)