Skip to content

hansanghyeon-archive/flutter-plant

Repository files navigation

Study

Flutter v3 Migration

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

Container, SizedBox 위젯은 둘다 width, height를 가진다. Container는 width, hegiht를 넣지 않으면, 최대 크기로 확장해준다. (screen size), 반면 SizeBox는 width, height 둘중 하나라도 설정하지 않으면 child 크기게 알맞게 설정된다.

SizedBox는 html의 inline-block, inline-flex와 비슷하다.

링크

학습

CHANGELOG.md

2022-06-20

스크린샷 2022-06-20 오전 7 04 56

2022-06-18

스크린샷 2022-06-18 오후 10 46 40

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published