Flutter

Flutter

教程地址:https://flutterchina.club/get-started/install/

获取SDK

  • Linux and macOS
git clone -b beta https://github.com/flutter/flutter.git
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
  • windows
设置环境变量.../flutter/bin
在环境变量中设置PUB_HOSTED_URL、FLUTTER_STORAGE_BASE_URL

运行doctor

$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel beta, v0.5.1, on Microsoft Windows [Version 6.1.7601], locale zh-CN)
[√] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[√] Android Studio (version 3.1)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[!] IntelliJ IDEA Ultimate Edition (version 2017.2)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[√] Connected devices (1 available)

! Doctor found issues in 1 category.

安装AndroidStudio插件

  • Flutter 插件: GitHub issue 跟踪.
  • Dart 插件: JetBrains YouTrack.

你可能感兴趣的:(Flutter)