Это остановит изменение цвета границы. Добавьте InputDecoration
к TextFormField
:
TextFormField(
....
decoration: InputDecoration(
border: OutlineInputBorder(
borderSide: BorderSide(color: //put your color, width: //if you want to change the width)),
),
),