https://youtu.be/T4Uehk3_wlY
https://api.flutter.dev/flutter/widgets/FittedBox-class.html
FittedBox
fitに従って、その子をそれ自体の中でスケーリングおよび配置する
MyBlueRect(
child: FittedBox(
alignment: Alignment.centerLeft,
fit: Boxfit.contain,
child: MyDashPic(),
),
)
プロパティ
fit: どのように配置するか
fitWidth: 親の Widthに合わせてサイズ調整して切り取り?
fill: 親のサイズに合わせて引き伸ばしたりして調整
even none: サイズ調整せず切り取り?
alignment: 親要素の中での子要素の位置
Discussion