Overview
Explore how to implement Redux state management in the Funbook React Native app. Learn Redux concepts like actions, reducers, and stores, how to configure Redux, and use it to manage app state effectively. This lesson prepares you to handle global state and debug Redux in a real app context.
We'll cover the following...
We'll cover the following...
In the previous section, we got our hands a little bit dirty. We managed to build the frontend of a functioning app. Of course, the functionalities we created were limited. A real-world social media app would be much more robust, with many more components and user flows. However, bigger apps bring their own set of problems like:
Handling large datasets ...