Flutter入门
1. 安装
以下已Mac为例,介绍入门
-
git clone https://github.com/flutter/flutter.git -b stable
如需其他版本,请下载其他版本 - 添加path
请使用本机的shell,本人使用Oh My Zsh,因此使用~/.zshrc
为例
vi ~/.zshrc
export PATH="$PATH:[pwd]/flutter/bin"
source ~/.zshrc
- 检查Flutter是否path已添加成功
echo $PATH
,which flutter
- 检查其他环境
flutter doctor -v
查看相关error,并一一解决,其有提示。最终可以看到No issues found!
,则大功告成啦
2. 创建HelloWord
-
flutter create hello_word
注意提示All done!
注意1: 如果工程名命名为helloWord则会报错。
注意2: 注意最后tips,由于未安装Android Studio,其报错。android studio
注意3: android studio3.6及以上,需要手动设置老版本的android sdk, 详细设置请查看Install Android Studio
- 到工程目录中执行
flutter run