【问题标题】:Network image does not fit to the card网络图像不适合卡
【发布时间】:2020-12-18 16:59:34
【问题描述】:

网络图片不适合卡。 我需要一个允许所有电话屏幕的修复方法。在我的情况下,当手机尺寸减小时,图像会失去形状。

Padding(
         padding: const EdgeInsets.fromLTRB(
         0, 8, 0, 0),
         child: Container(
         decoration: BoxDecoration(
         ),
         child: Image.network(product.productImage,height: 80),
        ),
       ),

【问题讨论】:

    标签: flutter dart


    【解决方案1】:

    添加fit属性

    Image.network(product.productImage,height: 80, fit: BoxFit.cover),
    

    【讨论】:

      猜你喜欢
      • 2019-04-30
      • 2019-06-18
      • 2015-01-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-05-30
      • 2015-02-04
      • 2012-05-25
      相关资源
      最近更新 更多