textformfield label color flutter code example
Example 1: text fieldform color flutter
TextField(
style: TextStyle(color: Colors.red),
decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Example 2: flutter textfield label color
labelStyle: TextStyle(
color: Colors.white,
)