美文网首页
Flutter学习之---安装

Flutter学习之---安装

作者: Hunter琼 | 来源:发表于2020-07-06 17:26 被阅读0次

    1 安装Flutter

      git clone -b master https://github.com/flutter/flutter.git
     ./flutter/bin/flutter --version
    
    export PUB_HOSTED_URL=https://pub.flutter-io.cn
    
    export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
    
    export PATH=`pwd`/flutter/bin:$PATH
    
    image.png

    2 运行 flutter doctor安装依赖

    image.png

    3 iOS设置
    3.1 模拟器设置
    Xcode我使用的11.2.1版本,直接执行
    open -a Simulator
    flutter run
    第一次执行时间比较长,需要下载些配置

    image.png
    运行结果: image.png

    解决办法: 进入app的路径,在执行
    再次执行,又有如下提示: please specify a device with the '-d <deviceId>' flag, or use '-d all' to act on all devices
    模拟器和真机选择其中一个即可 执行 flutter run -d EB2E8B57-AE05-4AB9-BE18-A7E0D1EA146E

    相关文章

      网友评论

          本文标题:Flutter学习之---安装

          本文链接:https://www.haomeiwen.com/subject/ksqgqktx.html