반응형

이제 직접 코딩하면서 배워보자!!

그동안 손이 근질근질.. 눈꺼풀이 천근만근이었을 것이다!!

 

1. 안드로이드 스튜디오에서 플러터 프로젝트 생성(GUI)

File > New > New Flutter Project...

 

Flutter Application 선택

 

Application 설정.

 - 소스 위치 : [플러터 프로젝트 디렉토리]\[플러터 프로젝트 명]

 - 플러터 SDK 설치 Path 설정

 

마지막으로 패키지 명을 입력 후 Finish

 

2. CLI 로 프로젝트 생성

$ flutter create hello_world2

....

All done!
You can find general documentation for Flutter at: https://docs.flutter.dev/
Detailed API documentation is available at: https://api.flutter.dev/
If you prefer video documentation, consider: https://www.youtube.com/c/flutterdev

In order to run your application, type:

  $ cd hello_world2
  $ flutter run

Your application code is in hello_world2\lib\main.dart.

 

안드로이드 스튜디오에서 가져오기

 - CLI 로 생성한 hello_world2 디렉토리 Open

 

안드로이드 스튜디오에서 프로젝트 확인

 - hello_world\lib\main.dart 파일이 메인

 

반응형

+ Recent posts