플러터 Expanded, Flexible
Flexible 위젯
Row(
children : [
Flexible( child: Container(color : Colors.blue), flex: 3),
Flexible( child: Container(color : Colors.blue), flex: 7)
]
)
- Row 안에서 박스를 여러개 배치할때 %로 영역을 나누고 싶을 때
- flex는 이 박스가 가로폭을 얼마나 차지할 지 나타내는 배수
- Column 안에서도 마찬가지로 사용가능
Expanded 위젯
Row(
children : [
Expanded( child : Container(color : Colors.blue), flex: 1),
Container(Color : Colors.green, width : 100)
]
)
하나의 박스만 가로폭을 꽉 채우고 싶을 때 사용
Author And Source
이 문제에 관하여(플러터 Expanded, Flexible), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ein214/플러터-Expanded-Flexible저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)