适合容器中图像的高度和宽度

时间:2020-10-24 11:32:58

标签: image flutter dart

如何在Container中适合图像的高度和宽度?

 Container(
   color: Colors.grey,
   width: 120,
   height: 150,
   child: CachedNetworkImage(
           fit: BoxFit.fill,
           errorWidget: (context, url, error) =>
           Icon(Icons.error),
           imageUrl: i['image_url']),
     )

此处图片

enter image description here

1 个答案:

答案 0 :(得分:0)

FittedBox包裹图像,并用SizedBox包裹FittedBox。使SizedBox达到您想要的大小。使FittedBox fit参数等于您要使用的拟合类型。以下是BoxFits的类型。我可能建议使用BoxFit.fill

需要SizedBox来使FittedBox占据其大小。