What are turbo modules?

The turbos modules offer a new architecture for initializing native modules . At the runtime of the application, the TurboModules open a bridge that will later allow the js code to initialize any module at its first use. The module thus created will have the same structure as any other module.

Read more

What is a native module?

A native module is a set of javascript functions that are implemented natively for each platform (in our case is iOS and Android). It is used in cases where native capabilities are needed, that react native doesn’t have a corresponding module yet, or when the native performance is better.

Read more

Can I use Java in React Native?

With React Native, you create one codebase that works on both Android and iOS . And it doesn’t just “work”—it compiles to native Java and Swift code. Specifically, React Native creates a bridge between web UI components and their native Java/Swift counterparts.

Read more