概要
Flutterを試しに使ってみました。後で忘れないようメモ書きをまとめたものです。
Flutterについて
https://github.com/flutter/flutter
Flutter is Google’s SDK for crafting beautiful, fast user experiences for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.
Quick Start
macOS install
https://docs.flutter.dev/get-started/install/macos
Xcode
は必須としていないようだが、推奨ということで、ここ からダウンロードしておきます。macOS 10.15.7 Catalina
が対応できる最新のXcode
のバージョンは12.4
でした。
Get the Flutter SDK
$ cd /usr/local/share
$ wget https://storage.googleapis.com/flutter_infra_release/releases/stable/macos/flutter_macos_3.7.3-stable.zip
$ unzip flutter_macos_3.7.3-stable.zip
無事完了したら、~/.bashrc
に以下を追加
# for flutter
export PATH="$PATH:/usr/local/share/flutter/bin"
Run flutter doctor
Run the following command to see if there are any dependencies you need to install to complete the setup (for verbose output, add the -v flag):
$ flutter doctor -v
Platform setup
iOS setup
Install Xcode
Flutter apps
を開発するには、Xcode
インストール済のMac
が必要です。
- Install the latest stable version of Xcode(ここで、
macOS Catalina
が対応可能な12.4
を使う) Xcode command-line tools
をインストール$ xcode-select --install xcode-select: error: command line tools are already installed, use "Software Update" to install updates
コマンドラインはすでにインストール済だそうです。
To be continued…