
Clone the Redux starter project, install dependencies with npm install, and run the app with the appropriate command, choosing iOS via Xcode or Android via react-native run.
Explore the basics of Redux in a React Native starter project by building a counter with increment, decrement, and clear, and plan to implement a global state and Redux package.
Learn how to create Redux actions, export and import them, connect components, and dispatch increment and decrement actions to manage state in a React Native Redux app.
Hook up two new actions in Redux: a clear action and a set action with a payload to control the counter, moving state management from the component to Redux.
Learn to implement multiple reducers in Redux for React Native, create a hello reducer with an initial state, and combine reducers using combineReducers to map state.
Clone the starter project from the repository using git clone. Install dependencies with yarn or npm, then run the app on iOS or Android.
Learn how to use Redux in React Native from the ground up - build great apps based on the knowledge you will gain in this course!
In the course we will first create a basic counter app in React Native to understand and grasp the basic Redux concepts.
After that, we will learn how to use Redux middleware such as Redux Thunk and call a public open API.