fayeed / flutter_mentions

A simple flutter input widget to add @ mentions functionality to your app
MIT License
107 stars 122 forks source link

can't clear Textediting cotroller #74

Closed VimeshPolaris closed 2 years ago

VimeshPolaris commented 2 years ago

After mentioning the people from the list I want to clear the text-editing controller, but here, I can't find any property for that.

Anyone can help with that?

VimeshPolaris commented 2 years ago

You could just set a key for the FlutterMention widget & then just use these two ways to clear the field.

Using the controller's clear method: key.currentState.controller.clear();

Using the controller's text property: key.currentState.controller.text = '';