React Native meet C++ You should now finally see React Native presenting a message from C++ in Android !
Read moreHow do you write native modules in React Native?
There are two ways to write a native module for your React Native application:
Read moreWhat are native modules in React Native?
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