how to change error color text in flutter code example
Example: text input validation message color flutter
TextFormField(
decoration: InputDecoration(
errorStyle: TextStyle(
color: Colors.red[400],
fontWeight: FontWeight.bold,
fontSize: 13,
),
),
...
)