【发布时间】:2021-08-14 12:50:14
【问题描述】:
我正在尝试在我的警报对话框中显示此 gif 资源,但出现错误:
Another exception was thrown: Unable to load asset: assets/tutorial/lip.gif
但 .png 图像可以正常工作。
这是我的警报对话框代码:
...
AlertDialog(
title: Text('Showing Lip'),
content: Container(
child: Image.asset(
'assets/tutorial/lip.gif',
height: 125.0,
width: 125.0,
),
),
...
感谢任何帮助!
【问题讨论】: