flutter --version

cd ~/Desktop
flutter create app
cd app
open -a Simulator
flutter devices


flutter run

New repository 생성

Github 연결
cd ~/Desktop/app
git init
git remote add origin https://github.com/hyejiiniing/app.git
git add .
git commit -m "create app project"
git branch -M main
git push -u origin main