change color of label text in textfield flutter code example
Example 1: color textfield text flutter
TextField(
style: TextStyle(color: Colors.white),
...
)
Example 2: flutter textfield label color
labelStyle: TextStyle(
color: Colors.white,
)