In Flutter, How can I change TextFormField validation error message style?

Viewed 26645

I want to set a bigger font size for error message validation in TextFormField but I don't know how.

1 Answers

For this you have to use InputDecoration

TextFormField(
  decoration: InputDecoration(
    errorStyle: TextStyle(
      fontSize: 16.0,
    ),
  ),
  ...
)
Related