我试了容器我把image.net的工作在孩子它的工作,但我需要自定义图像的边界。我应该如何修复它?
Expanded(child: Align(alignment:Alignment.center,
child: Container(
height: 45, //height, //155,
width: 45, //width, //155,
decoration: BoxDecoration(
color: const Color(0xff7c94b6),
image: DecorationImage(
image: Image.network(state
.offerConfirm
.ownImage[index]),
fit: BoxFit.cover,
),
borderRadius: BorderRadius.circular(12),
),
),
),
flex: 3,
),
2条答案
按热度按时间wh6knrhe1#
将图像装饰更改为:
完整代码:
pcrecxhr2#
flutter中有三种类型的图像小部件,
1.网络图像
因此使用
NetworkImage("http://imageURL"),
代替Image.network("http://imageURL"),
1.资产图像
1.列表项
因此使用
AssetImage("assets/book_icon.png"),
代替Image.asset('assets/skip-book_icon.png'),
1.内存图像,
因此使用
MemoryImage(uint8listBytes),
代替Image.memory(uint8listBytes),