Application theme
ThemeData's accent properties have been deprecated | Flutter
MaterialApp(
theme: ThemeData(accentColor: myColor),
// ...
);
final ThemeData theme = ThemeData();
MaterialApp(
theme: theme.copyWith(
colorScheme: theme.colorScheme.copyWith(secondary: myColor),
),
//...
)
Container, SizedBox 위젯은 둘다 width, height를 가진다. Container
는 width, hegiht를 넣지 않으면, 최대 크기로 확장해준다. (screen size), 반면 SizeBox
는 width, height 둘중 하나라도 설정하지 않으면 child 크기게 알맞게 설정된다.
SizedBox는 html의 inline-block, inline-flex와 비슷하다.