I want to remove the topBorder and keep the rest of the borders (leftBorder, rightBorder, bottomBorder) for a Textfield
. Is there any way to do this? If it's not possible for Textfield
then is it possible for TextFormField
or any other similar widget?
TextField used :-
TextField(
decoration: InputDecoration(
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: primaryColor)),
border: OutlineInputBorder(
borderSide: BorderSide(color: primaryColor))),
)