📝

Flutterの開発環境を構築する

2021/07/27に公開

Flutterのインストール

  • インストール
brew install flutter

Android Studio の設定

  • インストール
brew install android-studio
  • Configure > Plugins から Flutterを検索してインストール
  • Configure > SDK Manager > SDK Tools から Android SDK Command-line Toolsをインストール
  • Android SDKのライセンスを認証
flutter doctor --android-licenses
  • 連携できたかチェック
flutter doctor

Doctor summary (to see all details, run flutter doctor -v):
[] Flutter (Channel stable, 2.2.3, on macOS 11.4 20F71 darwin-arm, locale
    ja-JP)
[] Android toolchain - develop for Android devices (Android SDK version
    30.0.3)

XCode の設定

  • cocoapodsを入れる
brew install cocoapods
  • これは必要なのか?
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
  • XCodeのライセンスを認証
 sudo xcodebuild -license

アプリ作成

flutter create {app名}

Chromeで実行

flutter run -d chrome

Discussion