|
|
|
|
|
by toan3rd
2597 days ago
|
|
If i understood it correctly,
React Native basically gives you a JS runtime environment that handles communication with native APIs of the system and is shipped with your app.
Flutter (and Dart) will transpile into native code and compile natively for your platform. So on React Native you will have that abstraction layer add runtime latency and package size of your app, while Flutter (Dart) really outputs native code. |
|
React Native is the other way around - real native widgets backed by interpreted/jitted JavaScript code.