✔ leading: 아이콘 버튼이나 간단한 위젯을 왼쪽에 배치할 때✔ actions: 복수의 아이콘 버튼 등을 오른쪽에 배치할 때✔ onPressed: 함수의 형태로 일반 버튼이나 아이콘 버튼을 터치했을 때 일어나는 이벤트를 정의하는 곳
Flutter&Dart
✔ ??= --> null이 아닐때는 오른쪽 값으로 바꿔라 ✔ Listimport 'package:flutter_study/flutter_study.dart' as flutter_study;void main() { // list List fruit = ['토마토', '사과']; print(fruit); // index print(fruit[0]); fruit.add('수박'); print(fruit);} ✔ Map key와 value 값 ✔ Set중복값 제거 ✔ if문 ✔ swith case ✔ loop ✔ 함수 parameter positional parameter optional parameter named parameter arrow function ✔ typedef op..