insatll

下载安装flutter

1
2
3
4
5
6
7
8


cd ~/development
wget https://storage.flutter-io.cn/flutter_infra_release/releases/stable/macos/flutter_macos_3.3.9-stable.zip
unzip flutter_macos_3.3.9-stable.zip

export PATH="$PATH:`pwd`/flutter/bin"

check

检查系统环境是否正常,比如chrome、xcode、android等

1
flutter doctor

code

编写工具及扩展

1
2
3
install vscode[https://code.visualstudio.com/]

choose Extensions: Install Extensions flutter

demo

创建第一个demo

1
2
3
4
5
flutter create my_app

cd my_app

flutter run