RxDart is an implementation of the popular reactiveX api for asynchronous programming , leveraging the native Dart Streams api.
Read moreWhat is a bloc approach?
BLoC stands for Business Logic Components . The gist of BLoC is that everything in the app should be represented as stream of events: widgets submit events; other widgets will respond. BLoC sits in the middle, managing the conversation.
Read more