developKinberg
developKinberg

Reputation: 383

Should I create my ReactNative App with Redux?

I starting to learn ReactNative to develop Android and iOS Applications. Before that I programming Mobile-Applications with Java and Swift.

The last weeks I search a lot in the web to get experience from other developer that use ReactNative or other "Cross-Platform-Frameworks". Early I hear about Redux and that many developer use it.

I programming some examples in Redux to understand the concept, I have understood something but not quite everything.

So I come to my main question, is it better to programming a ReactNative App for both platforms with Redux ? What are the pros and cons ? And it is better for a beginner to start with ReactNative without Redux ?

Hopefully anyone can answer my question and share his experience, so I understand Redux better.

Upvotes: 0

Views: 65

Answers (1)

Alex K
Alex K

Reputation: 21

I'd say first get a good understanding of how React works and read about React best practices because thats what React Native uses to compose hierarchy of native views in React native app.

For a simple app you don't have to use Redux.You can always add it later.

https://blog.tighten.co/you-might-not-need-redux

Upvotes: 2

Related Questions