henryleunghk / flutter-native-text-input

Native text input for Flutter
MIT License
66 stars 50 forks source link

[BUG] FocusNode requesting focus not working #18

Closed Nico3652 closed 2 years ago

Nico3652 commented 2 years ago

I'm building a chat app where I'm trying to trigger the textfield focus through the FocusNode with focusNode.requestFocus() when a new message is sent in order to not close the keyboard every time the user send a message.

I'm calling this method inside the onSubmitted. It's working very fine with flutter textfield but here it's not working for me.