繁体   English   中英

我在颤振中加载图像时遇到问题。 它说你应该在资产中找到一把钥匙

[英]I have a problem with image loading in flutter. It says you should find a a key in assets

我想知道为什么照片没有出现

Image.asset('assets/Images/food.jpg',width: 600,height: 240),
Text('food paradise')

这是在 pubspec.yaml 中检测到的错误Invalid schema,请更正并重试!

确保您在下面添加了pubspec.yaml文件

assets:
    - assets/Images/food.jpg

还有你的food.jpg文件在assets/Images文件夹中。

还要确保您的“资产”键是否也在flutter: 键下面? 像下面

flutter:
  assets:
    - assets/Images/food.jpg
    - ...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM