자신의 메모 Flutter로 widget을 부모 widget 가득 늘리기

flutter의 widget은 아이의 사이즈에 맞추어 줄어들도록 만들어져 있다



Card(
   color:Colors.blue,
   child:Text("ぴったり"),
)




이것을 부모 가득 늘리고 싶지만 어디에도 그런 인수가 없다!

정답 : SizedBox.expand 사용



Card(
   color:Colors.blue,
   child:SizedBox.expand(
      child:Text("ゆったり"),
   ),     
)




SizedBox 기타



SizedBox는 크기를 지정할 수 있는 Widget. 디폴트 생성자로 호출해도 늘릴 수 있다.
width: 와 height: 에 각각 double.infinity를 설정.

SizedBox(
   width: double.infinity,
   height: double.infinity,
   child: Text("てにゅうりょく"),
)

좋은 웹페이지 즐겨찾기