How to change that onSubmitted happens by pressing TAB:
Hello everyone, I’m a new developer in flutter and I have a question.
In the textField, how to make the onSubmitted
function happen when TAB is pressed and not ENTER (which is the default)
I will rejoice in repentance!!
2
Answers
I meant that I want to catch an event of pressing the specific TAB key. So I ended up wrapping the widget in a KeyboardListener,Then every time I click Hunter in the TextField there will be a listening event. Here is the code:
You can use
FocusNode
to check if the textField is in focus. If it has lost the focus and the textField value is not empty, then it will run the code.Example: