본문 바로가기

안드로이드/Flutter

Flutter 개발 환경 만들기

What is Flutter?

Android와 iOS 환경에 동시에 App을 개발할 수 있는 프레임 워크이다.

사용언어: Dart

사용처: Android, iOS, web, back end, Fuchsia( 구글에서 PC, IoT 등을 대상으로 한 차세대 OS)

 

'구글에서 전폭적으로 밀고있는 프로그래밍 언어' 이다.

Optimized(최적화)가 잘 된 언어이기 때문에 퍼포먼스에 경쟁력이 있고

쉬워서 진입장벽이 낮은 장점이 있다.

 

개발 환경 구축

준비물

- Android Studio https://developer.android.com/studio/

 

Download Android Studio and SDK tools  |  Android 스튜디오

developer.android.com

- 플러터 SDK  https://flutter.dev/

 

Flutter - Beautiful native apps in record time

Flutter is Google's UI toolkit for crafting beautiful, natively compiled applications 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 sour

flutter.dev

플러터 SDK 설치 후에는

윈도우키 -> 시스템 환경 변수 편집 -> 고급 -> 환경변수 -> Path 더블클릭 -> 찾아보기 -> 플러터 SDK가 설치된 경로 내의 bin 폴더 선택

을 통해 환경 변수 설정을 해준다. 이로써 이 윈도우 내에서는 어디서든 Flutter 명령어를 사용할 수 있다.

 

Android Studio 를 설치하면

'Welcome to Android Studio' 창이 뜬다. 우측 하단의 'Configure' 버튼 클릭 -> Plugins 클릭 -> 검색창에 flutter 검색 후 install -> Android Studio 를 재시작 -> 메뉴 2번째 항목에 'Start a new Flutter project' 추가.

 

이로써 개발 환경 구축이 완료되었다.

 

이제 프로젝트를 생성하고, 개발을 시작해보자.