fayeed / flutter_mentions

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

Default Text is not working in flutter_mention #73

Closed VimeshPolaris closed 2 years ago

VimeshPolaris commented 2 years ago

I have successfully implemented this package : flutter_mentions: ^2.0.1 But the default text property is not working when we pass the value from the variable.

Ex:

String userName = 'Coder';

FlutterMentions( . . .
defaultText: '${postTitleTextEditingController.text}', . . . ),