What is SQLite Flutter?

What Is SQLite. SQLite is an open source relational database , it is used to create a database, perform different operation like add, delete,and remove data. SQLite does not require a server or backend code, all the data is saved to a text file in the device. You can learn more about it here.

Read more

Why do we need BLoC Flutter?

Bloc is a design pattern created by Google to help separate business logic from the presentation layer and enable a developer to reuse code more efficiently . … It helps developers implement the Bloc design pattern in their Flutter application. It means that a developer must know the state of an app at any time.22 Eki 2021

Read more

What is BlocConsumer Flutter?

BlocConsumer exposes a builder and listener in order react to new states . BlocConsumer is analogous to a nested BlocListener and BlocBuilder but reduces the amount of boilerplate needed. BlocConsumer should only be used when it is necessary to both rebuild UI and execute other reactions to state changes in the bloc.

Read more