state management

8th January 2025

State Management in Flutter

State management in Flutter is a critical concept for building robust, responsive, and efficient mobile applications. It refers to the management and manipulation of data within an app to ensure that the user interface (UI) accurately reflects the current state of the application. Flutter, as a reactive framework, offers various approaches to handling and updating state data. In this guide, we’ll explore what state management is and delve into some common types of state management in Flutter. What is State Management? State, in the context of a Flutter app, represents the information that can change over time and influences the […]
6th May 2024

UseRecoil for state management

useRecoil – If you’re a React developer, you’ve probably used a library for managing state in your React applications. And you’ve likely heard of Redux “the state management” library for React.  For a long time, Redux was the only reliable and most widely-adopted solution for state management in React applications. And Redux has proven its use cases in big applications.  But the main problem that developers often face with Redux was the overall developer experience. In early versions of Redux, you had to manually set up your global data store and manually connect each component to consume it and update […]