1QuestionsMedium🔥 81% Asked
How does the React Native Bridge work?
Asked in:GoogleInfosysFlipkartAtlassian
The React Native Bridge acts as an intermediary between the JavaScript thread and the Native (iOS/Android) threads.
- JavaScript code runs on the JS thread.
- Native code (Objective-C/Java) runs on the Native thread.
- They communicate asynchronously by passing JSON messages over the Bridge.