반응형
flutter pixel over flow
-
[Flutter] 플러터 Expanded? 익스펜디드 Flexible? 플렉서블플러터 Flutter 2021. 8. 1. 19:33
Expanded는 Flexible위젯의 fit옵션이 FlexFit.tight로 고정된 위젯이다. class Expanded extends Flexible { const Expanded({ Key key, int flex = 1, @required Widget child, }) : super( key: key, flex: flex, fit: FlexFit.tight, child: child ); } Flexible위젯이 Expanded위젯보다 옵션 설정이 더 디테일 할뿐이다. Expanded( child: Foo(), ); Flexible( fit: FlexFit.tight, child: Foo(), ); 결과는 같다. 여러가지 에제로 위젯의 사용법을 보자~~ 주의 Flexible위젯 or Expanded..