Felix Angelov
Felix Angelov
> > ```dart > > Future load() async { > > emit(MyState.loading); > > await cancelable(() => Future.delayed(const Duration(seconds: 3))); > > emit(MyState.idle); > > } > > ``` >...
@cmc5788 @raulmabe thanks for the feedback! The reason I'm hesitant to switch to using an Assertion is because I don't think it would make a difference. Currently a `StateError` is...
I think this is a great idea as well but it'd be nice to discuss what that would look like. Currently, it's not enough to just change `BlocBase` to `StateStreamableSource`...
Hi @petrnymsa 👋 Thanks for opening an issue! Sorry for the inconvenience! We should detect if the terminal supports ansi escape sequences and only use the ansi colors if they...
Hi @luudan0079 👋 Thanks for opening an issue! I recommend that both blocs A and B are listening to the same stream exposed by the repository. This will ensure that...
Hi @pythonhubpy 👋 Thanks for opening an issue! There is an open discussion regarding this topic at https://github.com/kranfix/riverbloc/issues/11 👍
> @felangel I'm using bloc in production, and I must say it's the finest state management library available for our app's architecture, however there's too much reliance on context, which...
Hi @bigworld12 👋 Thanks for opening an issue! Unfortunately, I don't think this is possible. ```dart class BlocBuilder extends BlocBuilderBase ``` ^ won't compile because you need to define `S`...
@tenhobi yeah exactly. I think Dart just has no way to know what the generic type S is unless you define it unfortunately. @bigworld12 thanks for opening the issue 👍
Hi @akurnaz 👋 Thanks for opening an issue! Can you please provide a link to a minimal reproduction sample? Thanks! 🙏