Write the Code. Change the World.

4月 07

默认情况下, flutter 的 macos,windows 等配置默认是没有开启的。也就是你 flutter create 的时候,不会生成其相关配置。好吧,那么来开启。

操作一波

# 看看 config 相关的设置
flutter config --help

# 开启操作
flutter config --enable-web

flutter config --enable-macos-desktop

flutter config --enable-windows-desktop

# 关闭操作
flutter config --no-enable-web

flutter config --no-enable-macos-desktop

flutter config --no-enable-windows-desktop

当然,如果之前已经创建了项目。可以进入项目目录中,使用 flutter create . 补充起来。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注