TextFormField(
decoration: InputDecoration(
labelText: 'Ürün',
labelStyle: TextStyle(fontFamily: 'Montserrat'),
prefixIcon: Icon(
Icons.shopping_basket,
color: Color.fromARGB(255, 121, 171, 245),
),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
borderSide: BorderSide(color: Colors.green, width: 3),
gapPadding: 20.0),
),
)
I'm trying to change the border color of OutlineInputBorder with this code but it doesn't change. It doesn't increase the width of the sides either.
