From 41743e2c90d0a139920235daa0635aa11be56392 Mon Sep 17 00:00:00 2001 From: Meet Patel Date: Tue, 13 Oct 2020 13:32:29 +0530 Subject: [PATCH] meetxpress Added new Question no 36 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ced1ee8..3074417 100644 --- a/README.md +++ b/README.md @@ -224,7 +224,10 @@ You are requested to create your profile using the above link to be a part of it - Debug - Profile - Release - + +36. What is different from React Native? or How flutter is different from React Native? + +React Native utilizes a JavaScript bridge to convert its widgets to OEM widgets. And since it does this conversion (compare & update cycle) constantly, it creates a bottleneck and causes a drop in performance as a result. While still using the advantages of reactive views, on the contrary, Flutter does not use such a bridge to convert its own widgets to OEM widgets as shown in the answer to the previous question. Besides fast & smooth UI performance and predictability, as a further advantage of this, what you see on an Android KitKat device will be the same as what you get on Android Pie. This compatibility is obvious because Flutter doesn’t use OEM widgets and isn’t affected by UI/UX changes between different Android versions. ## Contributors