Expanded 가 Flexible의 하위 개념이다.
Fit 이 확장되는 옵션을 포함한 Flexible을 Expanded로 줄여 사용할 수 있음
Expanded is just a shorthand for Flexible
Expanded(
child: Foo(),
);
Flexible(
fit: FlexFit.tight,
child: Foo(),
);
https://stackoverflow.com/questions/52645944/flutter-expanded-vs-flexible
'App > Flutter' 카테고리의 다른 글
[ FLUTTER ] proguard 설정 (0) | 2022.03.21 |
---|---|
[ FLUTTER ] Android 빌드 서명 세팅 (0) | 2022.03.21 |
[ FLUTTER ] ScrollToTop 구현 예제 (0) | 2022.02.11 |
[ FLUTTER ] GetX 페이지 누적 이동(preventDuplicates) (0) | 2022.02.07 |
[ FLUTTER ] launcher icon plugin (0) | 2022.02.03 |