I am trying to style the border of TextFormField
. I'm using it with an OutlineInputBorder
. It by default takes an almost black color and on focus takes primary color. I tried to change color of the BorderSide
but it ain't worked.
I also tried the workarounds mentioned at Change TextField's Underline in Flutter for UnderlineInputBorder
, but nothing changes.
new TextFormField(
decoration: new InputDecoration(
labelText: "Email",
contentPadding: new EdgeInsets.all(12.0),
filled: true,
border: new OutlineInputBorder(
borderSide: new BorderSide(width: 2.0, color: Colors.white),
)
),
),