1.开发多端通用的Flutter工程,如macOS、Linux、windows 等需要进行如下设置,并重新启动Android Studio等编译程序;
Flutter 的 master 默认是关闭 桌面应用的,我们可以使用下面的命令开启:
flutter config --enable-macos-desktop
flutter config --enable-linux-desktop
flutter config --enable-windows-desktop
flutter config --enable-web
Flutter 查看本机的桌面模拟器
使用命令:
flutter devices
正常状态示例:
ming@bogon ~ % flutter devices
3 connected devices:
iPhone6 (mobile) • 1d78f64a10522f0a3df006c2ce916364ca952ec0 • ios •
iOS 12.5.1
macOS (desktop) • macos • darwin-x64 •
macOS 11.3 20E5186d darwin-x64
Chrome (web) • chrome • web-javascript •
Google Chrome 89.0.4389.82
ming@bogon ~ %
创建带 Mac 桌面应用的 Flutter 工程
网友评论