TextFormField(
decoration: InputDecoration(
suffixIcon: Container(
height: 22,
width: 22,
padding: EdgeInsets.only(top: 2,bottom: 0,right: 7),
child: Image.asset("images/search.png"),
),
hintText: 'search',
fillColor: Colors.white,
filled: true,
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(15),
borderSide: const BorderSide(
color: kViveLaCarLightGrey, width: 2.0),
)),
),
add properties border.none
TextFormField(
decoration: InputDecoration(
border: InputBorder.none,
......