How to use viroReact in React native?

81 views Asked by At

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?

1

There are 1 answers

0
mohammed alhomaidi On

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,