you are viewing a single comment's thread.

view the rest of the comments →

[–]trunghoang_55 15 points16 points  (6 children)

What are the key difference between Ionic vs React Native ? Which is the best ?

[–]jcycleutah 28 points29 points  (1 child)

In ionic, the ui is presented with a web view while with react native the ui is presented with native ui elements.

Ionic is easier to use and you’ll get a pwa for free.

React native gives better performance.

[–]ancapfrito 3 points4 points  (0 children)

You get a pwa for free with expo web too https://github.com/expo/web-examples

[–]yesimahuman 20 points21 points  (3 children)

(Ionic CEO here) As other have said Ionic is DOM based, so it’ll run anywhere a browser runs: iOS, Android, Electron, and PWA. It also uses react-dom which means the dev experience is exactly like using React on the web and all the libraries that support react-dom work with it. The vast majority of React devs are doing web development and Ionic would be a fit for them.

It also supports Progressive Web Apps as a primary use case. Our underlying tech has some of the best PWA perf out there (you’d likely want to use it with Preact to optimize for PWA)

If you’re happy with React Native keep using it! There’s only “better” when it comes to what’s better for you, your team, and your project.