Why redux is required for React Native mobile App?
Clash Royale CLAN TAG #URR8PPP Why redux is required for React Native mobile App? I am experience developer of native android app but I am entry level developer for React Native. I am familiar with basic but not able to understand why Redux is used with React Native? I want understanding of Redux feature in respect to Android Native App using java 3 Answers 3 Redux is not "mandatory" in a React Native mobile application. It is just an optional state management library that usually been used in a medium/large React Native application. Think Redux as a state management over the application. For example, you log in as a user called "Tom". With Redux, you can save the user data into a "store". Then when you want to use it in a profile/account page, you just need to grab the user data from your "store" and display it. Now imagine if you don't have a Redux. When...