Muhammad Ashfaq
Muhammad Ashfaq

Reputation: 2521

How to use viroReact in React native?

I am working on project in which I've to implement AR technology.

Example

Demo

How can I achieve it in React native for both Android & iOS?

Upvotes: 0

Views: 84

Answers (1)

mohammed alhomaidi
mohammed alhomaidi

Reputation: 1

Native code(Java, Obj-C, Kotlin, Swift) gives you the best performance, you can write unoptimised code and it’s still fast. Hybrid apps (eg. Ionic) performance are really far behind native apps before optimisation. React Native apps performance fall between both.

Native > React Native > Hybrid

Code sharing between OS: Due to hybrid apps use webview as a medium, it can achieve maximum code sharing between different mobile OS, the underlying library ensure the consistency.

React Native apps can achieve 100% as well but you will need minor tweaking (inconsistence) to make it even more native to each platform.

Currently you can use Swift to develop Android as well,

Upvotes: 0

Related Questions