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
flutter_bloc_tutorial/lib/bloc.dart
Lines 20 to 24 in 7c1cea3
I didn't try to run the code but I think there's a bug here when two queries are made in quick succession.
Consider the following time line:
api.get("dog")
api.get("cat")
_query
That is, it logs "Results for cat" twice and never logs "Results for dog" because _query and _results streams are not synced/zipped.
_results
The text was updated successfully, but these errors were encountered:
No branches or pull requests
flutter_bloc_tutorial/lib/bloc.dart
Lines 20 to 24 in 7c1cea3
I didn't try to run the code but I think there's a bug here when two queries are made in quick succession.
Consider the following time line:
api.get("dog")
api.get("cat")
_query
stream)That is, it logs "Results for cat" twice and never logs "Results for dog" because
_query
and_results
streams are not synced/zipped.The text was updated successfully, but these errors were encountered: