Add desktop support to an existing Flutter app $ flutter create –platforms=windows,macos,linux . This adds the necessary desktop files and directories to your existing Flutter project. To add only specific desktop platforms, change the platforms list to include only the platform(s) you want to add.
Read moreHow do you call a platform specific code in Flutter?
Writing custom platform-specific code
Read moreHow do I add a platform to my Flutter?
flutter create . You can simply run this from the root of your Flutter project and it will add the required files for all platforms. If you only want to add support for specific enabled platforms, you can do that by supplying the –platforms argument: flutter create –platforms=web,macos .
Read moreCan I use C++ with Flutter?
To create a Flutter plugin that includes Dart source code, but distribute the C/C++ library in binary form, use the following instructions: Open the android/build. gradle file for your project. Add the AAR artifact as a dependency.
Read more