MohiuddinM / no_bloc

MIT License
3 stars 0 forks source link

What are the cons? #1

Open denizdogan opened 4 years ago

denizdogan commented 4 years ago

I recently started getting into Flutter in my spare time and I've been meaning to start using BLoC, but I quickly got scared off by the sheer amount of boilerplate that it seems to expect from me. I was also confused by the intermingling with Cubit in the documentation. Since I'm new to both BLoC and Cubit I don't feel like I fully understand either one of them.

That being said, this library looks much simpler and more akin to something I would like to use myself. The README lists a few "pros", but what exactly are the cons?

MohiuddinM commented 3 years ago

This library takes a more high level approach, and tries to "hide" the underlying streams. This approach works for majority of use cases, but of course there are some scenarios where accessing underlying streams becomes necessary. Even in those scenarios you can still access the underlying streams but then it will not make sense to use this package in the first place.