IDEA 创建flutter项目,卡死Downloading ios-profile tools.../Downloading ios-release tools...

如果遇到上述问题,不管是在IDEA,还是在Android Studio,都是卡死在:

Downloading ios-profile tools.../Downloading ios-release tools...

这就比较纳闷,于是就在Flutter文档中,看到以下命令,并执行:

export PUB_HOSTED_URL=https://pub.flutter-io.cn

export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn

可是还是无解。。。搭梯子也无解。。。

于是,开始命令行撸起来:

创建项目:

flutter create -t module flutter_module


项目创建成功

进入项目:

cd flutter_module

运行项目:

flutter run


运行成功了

出现上图,运行成功了。。。


部分说明:可以直接在命令行输入,并不在命令行显示,但是实际在无感执行

r Hot reload. 【热更新】

R Hot restart.【重载】

h Repeat this help message.【帮助】

d Detach (terminate "flutter run" but leave application running).

c Clear the screen【清除】

q Quit (terminate the application on the device).【退出】


至此,再在IDEA重新打开flutter_module项目,IDEA可以Run起来flutter项目了~~

如有错误,欢迎指出,一起学习~

你可能感兴趣的:(IDEA 创建flutter项目,卡死Downloading ios-profile tools.../Downloading ios-release tools...)