Dmitri Borohhov
Dmitri Borohhov

Reputation: 1603

React (Native) Architecture and state management

Trying to understand the best practice for React/React Native state. Coming from the Java world, I tend to follow MVC/MVVM in my applications, but reading about other approaches makes me wonder if I am designing my application properly.

Premise:

My current approach:

Approach I read/heard/discussed:

I don't have too much history with React Native, so I am trying to understand whether the latter approach is actually superior for some reason.

Upvotes: 1

Views: 1345

Answers (1)

noɥʇʎԀʎzɐɹƆ
noɥʇʎԀʎzɐɹƆ

Reputation: 10647

These talks helped me understand Flux at a fundamental level. The basic idea is unidirectional data flow. Watch the talks and pay attention to them.

You don't need Redux to implement Flux– I used Alt.js instead.

Upvotes: 2

Related Questions