LoginSignup
3
2

More than 3 years have passed since last update.

自分用メモ Flutterでwidgetを親widgetいっぱいに引き伸ばす

Posted at

flutterのwidgetは子のサイズに合わせて縮むように出来ている


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

Screenshot_1582278302 (2).png

これを親いっぱいに引き伸ばしたいけど、どこにもそんな引数がない!

正解:SizedBox.expandを使う


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

Screenshot_1582278650 (3).png

SizedBoxその他

SizedBoxは大きさを指定出来るWidget。デフォルトコンストラクタで呼び出しても引き伸ばし出来る。
width: と height: にそれぞれdouble.infinityを設定。


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

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2