프로젝트 생성

>>> // flutter create {project_name}
>>> flutter create tutorial_app
-rw-r--r--@  1 wooshik  staff   542B  3 26 14:22 README.md
-rw-r--r--@  1 wooshik  staff   1.4K  3 26 14:22 analysis_options.yaml
drwxr-xr-x@ 12 wooshik  staff   384B  3 26 14:22 android
drwxr-xr-x@  7 wooshik  staff   224B  3 26 14:22 ios
drwxr-xr-x@  3 wooshik  staff    96B  3 26 14:22 lib
-rw-r--r--@  1 wooshik  staff   3.9K  3 26 14:22 pubspec.lock
-rw-r--r--@  1 wooshik  staff   3.6K  3 26 14:22 pubspec.yaml
drwxr-xr-x@  3 wooshik  staff    96B  3 26 14:22 test
-rw-r--r--@  1 wooshik  staff   896B  3 26 14:22 tutorial_app.iml
drwxr-xr-x@  6 wooshik  staff   192B  3 26 14:22 web
drwxr-xr-x@  6 wooshik  staff   192B  3 26 14:22 windows

프로젝트 시작

Untitled

프로젝트 실행

Untitled

Hot Reloading

// in lib/main.dart
home: const MyHomePage(title: 'Flutter Demo Home Page')

-> home: const MyHomePage(title: 'Hi Wooshik!'),

Untitled