「Flutter/インストール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→パス追加) |
(→確認) |
||
行15: | 行15: | ||
==確認== | ==確認== | ||
flutter doctor | flutter doctor | ||
+ | |||
+ | ==シンプルプロジェクトを作成== | ||
+ | flutter create my_app | ||
+ | cd my_app | ||
+ | flutter run |
2019年4月18日 (木) 10:37時点における版
ダウンロード
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