为了账号安全,请及时绑定邮箱和手机立即绑定

图片填充这里有个坑。

fit: BoxFit.cover   不一定会充满,我用的是安卓模拟器。

查了一下,如果遇到这种情况,加上:

width: double.infinity,
height: double.infinity,

然后就可以充满了。

正在回答

2 回答

是的,我也遇见了这个问题,好评

0 回复 有任何疑惑可以回复我~
@override
bottomContent() {
  return Expanded(
    child: Container(
      margin: EdgeInsets.only(top: 20),
      child: Image.network(
        "http://www.devio.org/io/flutter_beauty/card_1.jpg",
        fit: BoxFit.cover,
        width: double.infinity,
        height: double.infinity,
      ),
    ),
  );
}


2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

图片填充这里有个坑。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信