We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Column( children: [ TextFormField( textInputAction: TextInputAction.next, ), TypeAheadField<String>( direction: VerticalDirection.up, itemBuilder: (context, value) { return Text(value); }, onSelected: (value) {}, suggestionsCallback: (search) { return ['test']; }, ), ], ),
next
Focus moves to next TypeAheadField.
TypeAheadField is not focused. If I set direction of TypeAheadField to VerticalDirection.down, it works fine.
direction
5.1.0
Android, iOS
nothing
The text was updated successfully, but these errors were encountered:
Reproducible on 5.2.0
Sorry, something went wrong.
This issue is most likely related to #579 and will be fixed when the changes there are implemented. Please follow that issue instead. Thank you!
clragon
No branches or pull requests
Steps to reproduce
next
button on the keyboard.Expected results
Focus moves to next TypeAheadField.
Actual results
TypeAheadField is not focused.
If I set
direction
of TypeAheadField to VerticalDirection.down, it works fine.Package Version
5.1.0
Platform
Android, iOS
Code sample
Code sample
Logs
Logs
nothing
Screenshots or Video
Screenshots / Video demonstration
nothingThe text was updated successfully, but these errors were encountered: