Enabling Flutter desktop applications

I'm a full-stack developer from South Africa 🇿🇦. I love writing about JavaScript, HTML and CSS.
Search for a command to run...

I'm a full-stack developer from South Africa 🇿🇦. I love writing about JavaScript, HTML and CSS.
No comments yet. Be the first to comment.
Most of you know me for my consistency, a golden arrow in my blog series. I've written 1000 articles in 1008 days! Almost an article a day, and my honeymoon was the only holiday I ever took. I'm super proud of this achievement; it has been a fantasti...

It's not the first time I'll be talking about community. I think it's an essential aspect of any successful tool. This shows in my previous explorations of Astro, Medusa, and now Vendure as well. All these products thrive in a super open, welcoming, ...

The cool part about Vendure is how easy it is to set up and how abstract each layer is. Basically, we get the following elements: External database Server Worker Admin UI Frontend While this is amazing, it also brings a bit of complexity when it co...

The previous article looked at customizing Vendure on a data and process level. In this article, we'll look at customizing emails, as they are often a big part of a webshop system. We'll be looking at two different layers of customization for customi...

Even though Vendure is a pretty significant project out of the box, in some cases, we might want to go in and modify some elements to work to our specific use case. In this article, I'll take a high-level look at some elements we can customize within...

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!

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 installedLinux: Clang, Cmake, GTK development headers, Ninja build, and pkg-config.To enable Flutter we can run the following command to enable it installation wide:
flutter config --enable-<platform>-desktop
Where the platforms will be:
flutter config --enable-windows-desktop
flutter config --enable-macos-desktop
flutter config --enable-linux-desktop
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
In the case of a new application, you can run the following command:
flutter create myapp
If your application already existed, you can navigate to the folder above it and execute the following command:
flutter create --platforms=macos flutter_app
Where the last part, flutter_app is the name of your existing folder. This command will rebuild the folder with the desktop config.
To run the app on the desktop, we can use the run command. It should ask us for which device:
flutter run
Or we can specify the device right away:
flutter run -d macos
flutter run -d windows
flutter run -d linux
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 my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter