gpt4 book ai didi

dart - 如何将图像适合作为容器小部件的背景图像?

转载 作者:行者123 更新时间:2023-12-03 04:01:41 25 4
gpt4 key购买 nike

我正在尝试创建类别卡,并将图像设置为子容器小部件的背景,但是图像未显示在容器上

Container job1category(String imgpath, String name, String nikename) {
return Container(
width: 170,
child: Card(
child: Wrap(
children: <Widget>[
Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage(imgpath),
fit: BoxFit.cover
)
),
child: null
),
ListTile(
title: Text(name),
subtitle: Text(nikename),
),
],
),
),
);
}

最佳答案

请尝试一下

Container(
width: double.infinity,
height: double.infinity,
decoration: BoxDecoration(
image: DecorationImage(image: AssetImage('img/bg.jpg'),fit: BoxFit.cover)),
child: ...,
)

关于dart - 如何将图像适合作为容器小部件的背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55839463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com