State Management

In this guide, we will learn how to fetch the data from an API with the help of state management Bloc in a flutter. for this, I am going to use this. It is a REST API that offers 6 common resources i.e posts, comments, albums, photos, todos, user in a consistent and well-formatted manner. […]

Continue Reading  

In this guide, we will learn a complete guide Bloc as state management in a flutter. When building an application, Flutter is the easiest and most powerful framework. But building an application without any strong architecture is like building a house without any planning and blueprints. We won’t understand the uses of architecture when building small applications. […]

Continue Reading  

GetX is one of the popular state management package among the flutter developer. GetX is not just famous for high performances state management but the combination of intelligent dependency injection and route management also. So, It is the most liked packages with the likes of 7.56k as of now. As there are a lot of […]

Continue Reading  

Definition of State The State is the information that can be read synchronously when the widget is built and might be change during the lifetime of widget. It defined the property of the widget State are mutable. The state is a behavior of the App at a given moment. As an example, think about an […]

Continue Reading