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
Hi
Widgets like Consumer, Listener, Builder` mostly for behavior subjects that can have a sync value.
Consumer
Listener
Thanks
The text was updated successfully, but these errors were encountered:
Currently, there is no official package 🙏. But you can use my RxStreamBuilder class in flutter_bloc_pattern package
final stateStream = BehaviorSubject.seeded(1); RxStreamBuilder<State>( stream: stateStream, builder: (context, State state) { // use state directly } )
Sorry, something went wrong.
@hoc081098 Great, although it would be nice if there was something official and agnostic to the bloc pattern, cause it is also used a lot in Flutter.
For example, a complementary .watch and .listen for flutter just like signals do.
@MiniSuperDev I will consider adding an official package
hoc081098
Successfully merging a pull request may close this issue.
Hi
Widgets like
Consumer
,Listener
, Builder` mostly for behavior subjects that can have a sync value.Thanks
The text was updated successfully, but these errors were encountered: