Does React native code purely converted to java or shift code? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

Does React native code purely converted to java or shift code?

As i have read, through Flutter (dart) and React native (js), i can actually build apps or write code that are cross-plateform supported, meaning that, the code can be translated to native languages of specific plateform like in Android, it will be translated to java/kotlin or in IOS, it will translated to shift. So my question is, does it actually translated to pure native language of specific plateform like java or shift or there is something other, im not aware of.

12th Jun 2021, 2:03 PM
Himansh
Himansh - avatar
2 ответов
+ 1
Himansh React Native is a JS framework and Java and Swift are programming languages. You can't convert React Native code to Java code rather you can use Java language as a backend language.
12th Jun 2021, 4:49 PM
A͢J
A͢J - avatar
+ 1
You are partially right, in the react native code the "views" or the UI components are internally compiled to their native versions (Java for android and Objective C for iOS). The rest of the code is actually JavaScript which remains as it is.
12th Jun 2021, 5:48 PM
Avinesh
Avinesh - avatar