此站点上已经存在类似类型的问题,但就我而言,情况有所不同。 请看看我的代码和错误。我无法理解错误。
这是我的代码的一部分,导致错误:
....
....
GridTile(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(feedbackItems[index].name),
Expanded(
child: Image.network(
'${feedbackItems[index].photo}'),
),
],
))
....
....
这是错误:
答案 0 :(得分:0)
请尝试这个。
Container(
height:100,width:100 // you can give height and width there
child: Image.network(
'${feedbackItems[index].photo}', fit: BoxFit.fill,),
),
答案 1 :(得分:0)
BASELINK = 'http://xxxx.com/asset/images/'; //defined baselink
Container(
height:100,width:100 // you can give height and width there
child: Image.network(
BASELINK+'${feedbackItems[index].photo}', fit: BoxFit.fill,),
),