Question
How to Remove Error Message in TextFormField in Flutter
How can I remove the error message in TextFormField
created by validator? I just want the red border because I don't have the space to show the error.
bool error = false;
TextFormField (
hintText:error?'please input productName':'',
hintStyle:TextStyle(color: Colors.red),
validator:(v){
v.trim().length>0?error=false:error=true; return null;
}
)
46 46124
46