React Native yana aiki da JavaScript da native code wadanda dole ne su sadarwa. Ainihin architecture yana amfani da asynchronous bridge; new architecture (JSI, TurboModules, Fabric) yana ba da daidaitawa sauri, synchronous communication. Fahimtar haka yana bayyyana halin React Native da amsawa.
Ainihin architecture: the bridge
React Native runs:
→ a JS THREAD (your React/JS code) and the NATIVE side (UI, native modules)
→ they communicate over a BRIDGE: messages are SERIALIZED (to JSON), passed ASYNC,
and deserialized on the other side
Limitations:
✗ ASYNCHRONOUS only (can't call native synchronously)
✗ SERIALIZATION overhead; the bridge can be a BOTTLENECK with heavy traffic
✗ e.g. fast scrolling/animations passing data over the bridge → jank
