less than 1 minute read

1. flutter install method

Flutter는 Android와 iOS를 하나의 코드로 모두 만들 수 있기 때문에 Android와 iOS를 따로 개발하는 것 보다는 훨씬 할 일이 적습니다.
단, 처음에 Android와 iOS 앱을 만들 때 필요한 환경 설정을 하는데  다소 시간이 걸리기 때문에 미리 진행해 주시기 바랍니다.

Flutter : Android와 iOS 앱을 하나의 코드로 구현할 수 있도록 도와주는 프레임워크
VSCode : 코드를 작성할 때 사용하는 에디터 (Android Studio 보다 가벼워서 VSCode로 진행해요!)
Android Studio : Android를 개발하기 위해 필요
Xcode : iOS를 개발하기 위해 필요

1.1 flutter download and install

download link
image

1.1.1 flutter download

1.1.2 unzip flutter.xxx.zip

1.1.3 make develop folder and setting develop environment

mkdir ./Developments || mv ~/Downloads/flutter ./Developments/ || echo 'export PATH="$PATH:$HOME/Developments/flutter/bin"' >> ~/.zshrc && source ~/.zshrc

1.1.4 check flutter installation

version check

flutter --version

check other environment

flutter doctor

1.2 VSCode downlaod and install

1.3 Android Studio download and install

1.4 Xcode download and install

ref

2. flutter app development method

ref