Home > Blockchain >  Flutter desktop questions
Flutter desktop questions

Time:04-01

Please, if I setup flutter desktop on my Mac, can I develop a desktop application for windows?… (using mac for developing a windows desktop app)

Thank you .

I tried developing flutter desktop app with my Mac for macos .

CodePudding user response:

You can write the code on any OS. However in order to compile your code you will have to do it on Windows OS.

See the documentation:

Note: To compile a desktop application, you must build it on the targeted platform: build a Windows application on Windows, a macOS application on macOS, and a Linux application on Linux.

  • Related