Home > database >  Which is the best Architecture or Design Pattern for React Native based mobile Apps development?
Which is the best Architecture or Design Pattern for React Native based mobile Apps development?

Time:06-21

I'm quite new to React Native platform. I want to know which is the best Architecture or Design Pattern for React Native based mobile Apps development?

CodePudding user response:

You can use many, I personally recommend the MVC architecture (https://techterms.com/definition/mvc).

But you can also use a web architecture which consist to put only two files per directory: the style and the index.tsx which is the component.

CodePudding user response:

The same as React, React Native is unopinionated on app architecture or any design pattern developers should use.

Throughout the years, React Native Veterans at Infinity Red have shared what worked for them and their clients - https://github.com/infinitered/ignite

  • Related