© 2023 Hashnode
#bloc
Introduction As a Flutter developer, you are undoubtedly familiar with the many challenges of building robust, scalable, and reliable mobile apps. One area that has garnered a lot of attention in the Flutter community is state management: t…
State management is one of the hot topics when it comes to Flutter. There is no doubt that handling a state application like a pro will increase the app's performance.So when it comes to Flutter we ha…
What Is Flutter Bloc? In Flutter applications, the Flutter BLoC is used to manage the state. The flutter state management feature allows handling all possible states of the application easily. It is e…
Hi 👋🏿! I'll teach you how to use flutter bloc to build a shopping cart. So this will be in two parts. In this part I'll show you how to fetch shopping items using a fake store api. Stay with me ! no…
To answer this question we must know first these keywords :State management,Architecture pattern,Design pattern. and know the difference between the last two because most of people think they are the same, and this is extremely wrong!. S…
Flutter is most useful in cross-platform technology. Each and every company or individual developer has either created their own way to manage code or just using someone else's patten. We found that file structure is most important for scal…
In this series you will learn everything about flutter bloc state management, including the basics of streams and advanced tools such as flutter_bloc/bloc package. What Is State management ? State is…
Let's see some of the commonly used techniques to manage states in our applications setState This example shows the most common situation where a stateful widget has to share its state with some state…