Flutter在项目中添加macos(桌面、web)运行环境

参考官方提供的文档:

https://flutter.dev/desktop#add-desktop-support-to-an-existing-flutter-app

1、进入项目中、执行以下命令。具体需要的环境根据自己需求添加。

flutter create --platforms=windows,macos,linux .

2、在macos桌面运行。 

flutter run -d macos

注意: 如果没有启用桌面支持。请开启桌面支持后。在执行以上操作。开启桌面支持可以参考Flutter运行Macos桌面程序第一步

你可能感兴趣的:(Flutter,flutter)