A highly customizable simple and easy to use flutter Widget to add a searchfield to your Flutter Application.This Widget allows you to search and select from list of suggestions.
MIT License
84
stars
63
forks
source link
[Proposal] Add `autoFocus` parameter to Searchfield #105
Is your feature request related to a problem? Please describe.
Internally, SearchField uses TextFormField, which offers a parameter autofocus, allowing to retrieve the focus if no other element requests it. I would like SearchField to have the same feature.
Describe the solution you'd like
I propose to add the parameter autofocus to the SearchField widget and pass it to TextFormField.
Is your feature request related to a problem? Please describe. Internally,
SearchField
usesTextFormField
, which offers a parameterautofocus
, allowing to retrieve the focus if no other element requests it. I would likeSearchField
to have the same feature.Describe the solution you'd like I propose to add the parameter
autofocus
to theSearchField
widget and pass it toTextFormField
.