提问人:An Tran 提问时间:7/19/2022 更新时间:7/19/2022 访问量:355
如何在 Flutter 中显示适合屏幕尺寸的背景图像?
How to display a background image that fits screen sizes in Flutter?
答:
1赞
ihatecoding
7/19/2022
#1
首先使用容器或其他方式确保父小部件占用整个空间。然后使用 BoxFit.fill。
Image.network(
pictureUrl,
fit: BoxFit.fill,
)
1赞
Adnan Bashir
7/19/2022
#2
将其添加到主容器中
decoration: BoxDecoration(
image: DecorationImage(
colorFilter: new ColorFilter.mode(
Colors.green.withOpacity(0.8), BlendMode.dstATop),
image: AssetImage(Utils().homebg),
fit: BoxFit.fill))
评论