TextFormField Widget code example
Example 1: text input validation message color flutter
TextFormField(
decoration: InputDecoration(
errorStyle: TextStyle(
color: Colors.red[400],
fontWeight: FontWeight.bold,
fontSize: 13,
),
),
...
)
Example 2: flutter text field form
TextField(
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Enter a search term'
),
);