Cubit in Flutter

What is Cubit? Cubit is a state management. It is a subset of the bloc package that does not given credit to events and instead uses methods to emit new states. It’s a class that stores an observable state, the […]

Flutter

What is BLoC? BLoC stands for Business Logic Components; it aims to separate the application’s business logic from User Interface, making the application code more unambiguous, scalable, and testable. Flutter bloc is one of the state management for Flutter applications. Bloc […]