Home > Software engineering >  Windows Desktop application wrote with Flutter, compiled to machine code or code byte?
Windows Desktop application wrote with Flutter, compiled to machine code or code byte?

Time:01-14

I want to build application using flutter. According to Flutter website:

Get native-compiled performance without large browser engine dependencies.

Flutter app compiled to machine code or code byte?

CodePudding user response:

A Windows desktop application written with Flutter would be compiled to machine code. Flutter is a mobile app development framework that uses the Dart programming language. It can be used to develop apps for both Android and iOS, as well as for desktop platforms such as Windows and MacOS, using the same codebase. When you build a Flutter app, it is compiled to machine code, which is then executed by the target device's processor.

  • Related