【发布时间】:2021-11-09 07:33:14
【问题描述】:
在 Flutter 中处理图像高度的媒体查询时。 (使用 assets.images )从资产加载图像,媒体查询显示此错误。
这是我使用的代码
body: Column(
children: [
const Image(
height: MediaQuery.of(context).size.height *0.2,
width: 250,
image: AssetImage('assets/logo/logo.jpg')),
Text(
'Login',
style: GoogleFonts.lato(
textStyle: const TextStyle(color: Colors.blue, letterSpacing: .5),
),
----------
),
],
),
> But it will work if i wrap the image widget with container and specify height for container.
【问题讨论】:
-
去掉图片小部件前面添加的 const 关键字
标签: flutter