Category Event Bus

Event-Based Flutter Example

Recently I encountered the event_bus package on pub.dev. The Event Bus package allows you to easily implement the publisher-subscriber pattern in Flutter. With the publisher-subscriber pattern, it is possible to decouple the publisher and the subscriber. I am going to…