DEV Community

Cover image for Enabling Flutter desktop applications
Chris Bongers
Chris Bongers

Posted on • Originally published at daily-dev-tips.com

Enabling Flutter desktop applications

A super cool thing in Flutter is that it can compile too many different outputs.
We've seen mobile apps, but Flutter can also output to native desktop apps!

Today we are doing just that. We'll take our Flutter side menu application and convert it to work on desktop!

Flutter Mac application

Requirements for desktop

First of all, we need Flutter installed, but for desktop, we also need some additional resources.

  • Windows: Visual Studio 2019 (Not visual studio code)
  • MacOS: Xcode and CocaoPods installed
  • Linux: Clang, Cmake, GTK development headers, Ninja build, and pkg-config.

Enable Flutter desktop

To enable Flutter we can run the following command to enable it installation wide:

flutter config --enable-<platform>-desktop
Enter fullscreen mode Exit fullscreen mode

Where the platforms will be:

flutter config --enable-windows-desktop
flutter config --enable-macos-desktop
flutter config --enable-linux-desktop
Enter fullscreen mode Exit fullscreen mode

Next up, you can run the following command to get a list of connected devices. This should show at-least one more.

flutter devices

1 connected device:

Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.18362.1082]
macOS (desktop)   • macos   • darwin-x64  • macOS 11.2 20D64 darwin-x64
Linux (desktop)   • linux   • linux-x64   • Linux
Enter fullscreen mode Exit fullscreen mode

Creating the Flutter desktop app

In the case of a new application, you can run the following command:

flutter create myapp
Enter fullscreen mode Exit fullscreen mode

If your application already existed, you can navigate to the folder above it and execute the following command:

flutter create --platforms=macos flutter_app
Enter fullscreen mode Exit fullscreen mode

Where the last part, flutter_app is the name of your existing folder. This command will rebuild the folder with the desktop config.

Run Flutter app on desktop

To run the app on the desktop, we can use the run command.
It should ask us for which device:

flutter run
Enter fullscreen mode Exit fullscreen mode

Or we can specify the device right away:

flutter run -d macos
flutter run -d windows
flutter run -d linux
Enter fullscreen mode Exit fullscreen mode

And that's it. We now have a Flutter application that can run natively on a desktop!

Very excited about this addition and looking forward to trying desktop apps out.
The styling part of your applications will convert right away. However, some plugins might need platform-specific configuration changes.

If you want to download this converted demo, you can find the complete code on GitHub.

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Top comments (0)