lutter window desktop build support

Hi Guys, Welcome to Proto Coders Point. In this article we add windows support for existing flutter project.

To create windows module i.e. desktop support for your flutter project, simple run the below commands in a terminal beening into root folder of your flutter project.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
flutter create --platform=windows/macos/linux
flutter create --platform=windows/macos/linux
flutter create --platform=windows/macos/linux

Then above command will simple “create a new folder into your existing flutter project by adding windows support” in your flutter config.

After create desktop support for flutter windows you need to config & enable <platform> desktop

run below respective config –enable command as below:-

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
flutter config --enable-windows-desktop
flutter config --enable-macos-desktop
flutter config --enable-linux-desktop
flutter config --enable-windows-desktop flutter config --enable-macos-desktop flutter config --enable-linux-desktop
flutter config --enable-windows-desktop
 flutter config --enable-macos-desktop
 flutter config --enable-linux-desktop

Once you run the above commands, flutter config file will get changed by adding windows config flutter.

Hence now your flutter project has ability to build flutter windows app.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
flutter build windows
flutter build windows
flutter build windows