top | item 32521541

(no title)

zodester | 3 years ago

> With JSI now you can get efficient access to native platform features. Before you were able to bridge pretty much any native feature with a native view or extension, but you were bottlenecked by the JS bridge. Nowadays you can use JSI for anything intensive.

JSI indeed makes things more efficient, but you still have to maintain code to translate between native and JS.

discuss

order

hunterb123|3 years ago

Yes, but only the minimal to provide that specific native functionality, instead of a full blown native app.

Unless you're doing something uncommon, there's most likely a 3rd party lib for that functionality.

But yes, if you want to use a native platform feature that the standard lib doesn't expose of course you need native code either by you or someone else, that's the flexibility of React Native.