Category: Redux

Using Redux in Sample React Native app

What is Redux? Redux is a predictable state manager, what predictable state manager does is that it records the state changes by describing as “Actions” and replay it later making state management predictable. In other words, Redux is a predictable state manager which helps us to write applications that behave consisting which run in different …

Read More “Using Redux in Sample React Native app”

Using Redux in a React Native Application

Introduction Managing states in a react native application can be a pain if the application is a large application and have lots of relationships with each component. What is Redux? Redux is a state management tool. Or according to the official documentation this is a predictable state container for JavaScript. Purpose of this is, it …

Read More “Using Redux in a React Native Application”