Posts

Showing posts with the label React Native with MVVM

React Native with MVVM

Image
  Introduction  - If you have ever experienced the situation, when you open the code you see an unmaintainable and unstructured code, and you are also afraid to touch the code because maybe it crashed. Javascript is easy to pick up and start coding with it but when you have a small project it’s ok you can manage it by any way but when it comes to a big project managing it in a good way is very important. So we apply the  MVVM ( Model-View-ViewModel ) pattern architecture in our react native project. Architecture Pattern  - is a combination of predefined systems with their specific responsibility and it also has guidelines which organize the system. Some other architectural patterns also try to solve the same problem as MVVM done, you can check others too which handle the code loosely coupled, maintainable and easy to test as well. Some Questions  - may be in your mind there are some questions like if you know the redux and flux then why you need to learn one mor...