#react Native Bridge for #ios and #android
▻https://hackernoon.com/react-native-bridge-for-ios-and-android-43feb9712fcb?source=rss----3a814
One of the biggest reason for the popularity of React Native is that we can create a bridge between the Native language and #javascript code. Which means we can reuse all the reusable libraries created in iOS and Android world.To create a production grade application some point of time you need to use Native Bridge. There are very less article and tutorial on cross-platform React Native bridge which works on both iOS and Android. In this article, we will create a Native Bridge to access Swift and Java class from JavaScript.The code of this article can be found here -> ▻https://github.com/nalwayaabhishek/LightAppCreate the LightAppTo better understand Native Module we will create a simple LightApp example using #react-native CLI.$ react-native init LightApp$ cd LightAppNext, we will (...)