DEV Community

Discussion on: Flutter, React Native, Ionic and Native platform: A visual guide

Collapse
 
chimon1984 profile image
Ryan Edge

The bridge itself is not slow. Rather it can be a bottleneck depending on how much data is sent thru it due to the serialization/deserialization. Think in terms of JSON.parse in the browser. Parsing a couple hundred records is fast, but if you try 50k records, then your performance suffer.

Collapse
 
seanmclem profile image
Seanmclem

Same for react native I'd think.