Leonardo Ratto
Leonardo Ratto

Reputation: 13

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

I want to set a different color for the error line created by the validator in TextFormField but I don't know how...

Upvotes: 0

Views: 612

Answers (1)

Ahmed Khattab
Ahmed Khattab

Reputation: 2799

Change the color and the width to your likings providing errorBorder and focusedErrorBorder inside InputDecoration as decoration for TextFormField:

TextFormField(
        decoration: InputDecoration(
          focusedErrorBorder:UnderlineInputBorder(
            borderSide: const BorderSide(color: Colors.blue, width: 2.0))
          errorBorder: UnderlineInputBorder(
            borderSide: const BorderSide(color: Colors.blue, width: 2.0),
          ),
        ),
      ),

Upvotes: 3

Related Questions