我面临图像大小的问题,我希望它能填满我从cloudfirestore生成的列表中卡的所有高度,但是即使在编辑图像时,某些东西也会阻止高度变化使用高度参数不会改变我不知道为什么,你能帮我这是我的代码
return new Card(
child: new Container(
height: 100.0,
child: ListTile(
leading: new Container(
child: new Image.network(
"${document['Picture']}",
width: 100.0,
fit: BoxFit.fill,
),
padding: EdgeInsets.all(10.0),
),