Does flutter use a Javascript Engine like React Native

As we know, React Native uses Javascript to create custom views without a DOM at runtime.

Does Flutter use the same logic?

+4
source share
2 answers

No, Flutter uses Dart compiled into native binary. JavaScript is not involved at all.

You can run JavaScript in the WebView plugin if you want.

Flutter creates its own binary code and displays the user interface using the Skia Graphics Library , which is a high-performance 2D graphics library that uses GPUs

Skia - 2D- , API-, . Google Chrome Chrome OS, Android, Mozilla Firefox Firefox OS .

, . , , , ,... , Material Design ..
.
, .

+5

@Günter Zöchbauer:

  • ReactNative
  • ReactNative .
  • Flutter Google Google Fuchsia

.

+3

Source: https://habr.com/ru/post/1696211/


All Articles