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
Note: I have read over the FAQ and similar issues and im passing the controller and focusnode to the TextFeild
the suggestions callback should work as expected on all platforms
the callback does not get called when using flutter web
5.0.2
Web
Widget _searchInput(BuildContext context) { return TypeAheadField<JSON>( debounceDuration: Duration(milliseconds: 500), hideOnEmpty: false, hideOnError: true, direction: VerticalDirection.up, focusNode: fn, controller: _textEditingController, builder: (context, controller, focusNode) { return TextField( controller: controller, focusNode: focusNode, textAlignVertical: TextAlignVertical.center, style: nimbleTextTheme.bodyLarge, maxLines: 1, decoration: decoration(), ); }, suggestionsCallback: (pattern) async { ..... }, itemBuilder: (context, suggestion) { ...... }, emptyBuilder: (context) => Container(), loadingBuilder: (context) => Container(), onSelected: (suggestion) { ...... }, ); }
no error logs are present
The text was updated successfully, but these errors were encountered:
It doesn't seems to be called on other platforms as well
Sorry, something went wrong.
Also on Windows
This is solved by adding focusNode on TypeAheadField
No branches or pull requests
Steps to reproduce
Note: I have read over the FAQ and similar issues and im passing the controller and focusnode to the TextFeild
Expected results
the suggestions callback should work as expected on all platforms
Actual results
the callback does not get called when using flutter web
Package Version
5.0.2
Platform
Web
Code sample
Code sample
Logs
Logs
no error logs are present
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]The text was updated successfully, but these errors were encountered: