App/Flutter

[ FLUTTER ] Flexible ( Expanded ) 차이

HEON.D 2022. 3. 16. 23:38

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

 

Flutter: Expanded vs Flexible

I've used both Expanded and Flexible widgets and they both seem to work the same. What is the difference between Expanded and Flexible?

stackoverflow.com