Is there a proper way to add a clear button to the TextField?
TextField
Just like this picture from Material design guidelines:
What I found is
suffixIcon: IconButton( icon: Icon( Icons.cancel, ), onPressed: () { _controllerx.text = ''; } ),