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
should focus to the next textfield on pressing enter/next button on keyboard
the suggestion box is preventing the app to focus to the next textfield.
Cases:
When suggestion direction is up:
When suggestion direction is down:
5.2.0
Android, iOS
Column( mainAxisAlignment: MainAxisAlignment.center, children: [ const TextField( textInputAction: TextInputAction.next, ), TypeAheadField( itemBuilder: (BuildContext context, value) { return Text(value.toString()); }, onSelected: (_) {}, suggestionsCallback: (search) { return [ 'item1', 'item2', ]; }, autoFlipDirection: true, autoFlipMinHeight: 1000, builder: (context, controller, focusNode) { return TextField( focusNode: focusNode, textInputAction: TextInputAction.next, ); }, ), const TextField( textInputAction: TextInputAction.next, ), ], ),
No response
The text was updated successfully, but these errors were encountered:
Thank you for your issue. For resolution, please track #579 instead, where the focus system of the package is being discussed and rewritten.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce
Expected results
should focus to the next textfield on pressing enter/next button on keyboard
Actual results
the suggestion box is preventing the app to focus to the next textfield.
Cases:
When suggestion direction is up:
When suggestion direction is down:
Package Version
5.2.0
Platform
Android, iOS
Code sample
Code sample
Logs
No response
Screenshots or Video
No response
The text was updated successfully, but these errors were encountered: