1.

Describe advantages of using React Native?

Answer»

There are multiple ADVANTAGE of using React Native like,

  • Large Community
    React Native is an Open Source Framework, it is completely community driven so any challenges can be resolved by getting online help from other developers.
     
  • Reusability
    Code can be written once and can be used for both IOS and ANDROID, which helps in maintaining and as well debugging large complex applications as no separate teams are needed for supporting both the platforms, this also reduces the cost to a major extent.
     
  • Live and Hot Reloading
    Live reloading reloads or refreshes the ENTIRE app when a file changes. For EXAMPLE, if you were four links deep into your navigation and saved a change, live reloading would restart the app and load the app back to the initial route.
    Hot reloading only refreshes the files that were changed without losing the state of the app. For example, if you were four links deep into your navigation and saved a change to some styling, the state would not change, but the new styles would APPEAR on the page without having to navigate back to the page you are on because you would still be on the same page.
     
  • Additional Third-Party Plugins
    If the existing modules do not meet the BUSINESS requirement in React Native we can also use Third Party plugins which may help to speed up the development process.


Discussion

No Comment Found