반응형
Beginning app development with flutter
Syntax
생성자
Person(this.firstName, this.lastName)
선택적, 명명된 paramter를 갖는 생성자
Person({this.firstName, this.lastName})
const Widget
위젯 앞에 const를 붙이면 컴파일 시점에 생성된다.
Element Tree
- 현재 표시되고 있는 엘리먼트 트리와 변경사항을 유지하는 가상 엘리먼트 트리(like 가상 DOM)를 별도유지하여
- 주기적으로 렌더링할 부분을 결정하고 필요한 부분만 렌더링
이미지 추가
1. 프로젝트 폴더 기준으로 폴더 생성 후, 이미지 복사(ex: assets/images)
flash_off.png
flash_on.png
2. pubspec.yaml에 추가
flutter:
assets:
- assets/images/flash_off.png
- assets/images/flash_on.png
3. 사용
Image.asset('assets/images/flash_off.png')
Flutter Inspector
Flutter DevTool
반응형