본문 바로가기
카테고리 없음

IntrinsicHeight , IntrinsicWidth

by dev_caleb 2022. 8. 29.
728x90

IntrinsicHeight 위젯은 child인 Row가 crossAxisAlignment가 stretch일때,
높이의 범위를 Row의 하위 위젯 중 가장 높은 것에 맞추어 준다.

중요한 건 Column이나 Row를 자식으로 해야한다.

 

사용해야하는 이유는 각각의 위젯의 사이즈를 모르면, align을 맞추기가 어렵기 떄문이다 (특히 .end 나 .center로) 그러므로 각각의 위젯의 사이즈를 가장 큰 것으로 통일한다면 해결이 원활하다.

 

 

IntrinsicHeight로 Row를 감싸준 모습

 

다음 예제를 보면 감이 좀 올 것이다

 

https://www.woolha.com/tutorials/flutter-using-intrinsicwidth-widget-examples

 

Flutter - Using IntrinsicWidth Widget Examples

Examples of how to use InstrinsicWidth widget in Flutter.

www.woolha.com

 

 

728x90