1.下载flutter后,解压,放好路径,添加环境变量
vim ~/.bash_profile
增加一行:
export PATH=/app/flutter/bin:$PATH
保存完毕之后运行命令:
source ~/.bash_profile
此后,可运行flutter命令
flutter -h
2. 检验开发环境
flutter doctor
,根据提示安装证书和插件
安装证书:
flutter doctor --android-licenses
在Android studio 中安装flutter插件(会同时默认安装dart,安装后重启Android studio)
新建或导入项目后,如果提示没有dart路径,修改配置:
Dart SDKpath
iOS设备运行程序
1.安装Xcode
2.运行命令来使用当前版本的Xcode
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
3.签署Xcode license agreement。可以运行一次Xcode并确认签署,或者运行命令
sudo xcodebuild -license
4.打开模拟器
open -a Simulator
5.在iOS设备上部署Flutter应用,需要额外的工具:
brew install ideviceinstaller ios-deploy
6.运行
flutter run -d 设备ID
或在Android studio等开发工具中选择执行设备
在Android studio等开发工具中选择执行设备
运行效果:
result
7.其他:
可以用flutter devices
查看已连接的设备(包括模拟器)。
运行期间,如果修改了代码,可以按键盘的r
键进行热更新。
按control+c
结束运行。
网友评论