change color of hint text flutter code example
Example 1: text fieldform color flutter
TextField(
style: TextStyle(color: Colors.red),
decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Example 2: text field placeholder color flutter theme
ThemeData(
// (...)
hintStyle: TextStyle(
color: Colors.grey, // <-- Change this
fontSize: null,
fontWeight: FontWeight.w400,
fontStyle: FontStyle.normal,
),
);
Example 3: color textfield text flutter
TextField(
style: TextStyle(color: Colors.white),
...
)
Example 4: flutter textfield label color
labelStyle: TextStyle(
color: Colors.white,
)