I want to set a bigger font size for error message validation in TextFormField but I don't know how.
I want to set a bigger font size for error message validation in TextFormField but I don't know how.
For this you have to use InputDecoration
TextFormField(
decoration: InputDecoration(
errorStyle: TextStyle(
fontSize: 16.0,
),
),
...
)