Search code examples
flutterdartkeyboardflutter-dependencies

flutter keyboard done button to search


Now a time keyboard unfocuses (Disappear) by hitting the done button. I want to search by using that done button on the flutter and unfocus keyboard. Is there any possible way?

enter image description here


Solution

  • You can use onSubmitted on TextField or TextFormField.

    TextField(
       ...
       onSubmitted: (value) {
          // Call search method
       }
       ....
    )