flutter change color of text theme code example
Example 1: change icon color flutter
Icon(
Icons.widgets,
color: Colors.blue.shade400,
)
Example 2: color textfield text flutter
TextField(
style: TextStyle(color: Colors.white),
...
)
Icon(
Icons.widgets,
color: Colors.blue.shade400,
)
TextField(
style: TextStyle(color: Colors.white),
...
)