「Flutter/インストール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→シンプルプロジェクトを作成) |
(→gitが使えればこちらでもDL&インストールできる) |
||
行25: | 行25: | ||
==gitが使えればこちらでもDL&インストールできる== | ==gitが使えればこちらでもDL&インストールできる== | ||
+ | cd /d/src/ | ||
git clone -b master https://github.com/flutter/flutter.git | git clone -b master https://github.com/flutter/flutter.git | ||
./flutter/bin/flutter --version | ./flutter/bin/flutter --version |
2019年4月18日 (木) 10:46時点における版
ダウンロード
https://flutter.dev/docs/get-started/install/macos
設置
適当な場所に設置して解凍
cd /d/src/ mv ~/Downloads/flutter_macos_v1.2.1-stable.zip ./ unzip flutter_macos_v1.2.1-stable.zip
パス追加
$ vi ~/.bash_profile export PATH="$PATH:/d/src/flutter/bin" $ source ~/.bash_profile
確認
flutter doctor
シンプルプロジェクトを作成
flutter create my_app cd my_app flutter run
右下の+ボタンで数値がカウントアップしていくサンプルが立ち上がる
gitが使えればこちらでもDL&インストールできる
cd /d/src/ git clone -b master https://github.com/flutter/flutter.git ./flutter/bin/flutter --version