),
),
Text(“contain”),
Container(
margin: EdgeInsets.all(10.0),
width: 120.0,
height: 120.0,
color: Colors.yellow,
child: Image.network(“https://img.ivsky.com/img/tupian/t/201411/27/weixiao_de_ningmeng_3d_sheji.jpg”,
fit: BoxFit.fill,
),
),
Text(“fill”),
],
),
Column(
children: [
Container(
margin: EdgeInsets.all(10.0),
width: 120.0,
height: 120.0,
color: Colors.black,
child: Image.network(“https://img.ivsky.com/img/tupian/t/201411/27/weixiao_de_ningmeng_3d_sheji.jpg”,
fit: BoxFit.fitHeight,
),
),
Text(“fitHeight”),
Container(
margin: EdgeInsets.all(10.0),
width: 120.0,
height: 120.0,
color: Colors.blue,
child: Image.network(“https://img.ivsky.com/img/tupian/t/201411/27/weixiao_de_ningmeng_3d_sheji.jpg”,
fit: BoxFit.scale</