© 2023 Hashnode
#bloc
Flutter provides many options for state management, each with its own strengths and weaknesses. In this article, I'll compare five popular state management techniques in Flutter: Provider, BLoC, Redux…
Flutter is a popular mobile app development framework that allows developers to build high-quality, fast-performing, and visually appealing apps for Android, iOS, and other platforms. With Flutter, de…
Hello, world! I’m Nitin Singh an undergrad student and app developer. I’m thrilled to publish my first-ever blog on Hashnode as a part of #debuggingfeb. Debugging is a critical part of the software de…
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…