当我尝试访问 Flutter 中的图像/资产时遇到问题

I have a problem when i try to access the image /assets in Flutter

This is an error when I run the program, so I am a newbie in this language(点击查看图片)

This is my file "pubspec.yaml ", I think I corrected every syntax and space, but it still happens this error(点击查看图片) And this

您是否尝试将图像添加到项目目录的资产文件夹中?

试试下面的代码希望对你有帮助。

确保您已在项目工作目录中创建资产文件夹,将图像放入资产文件夹并在 pubspec.yaml 文件中写入以下代码。

参考在您的项目中添加资产here

您的 pubspec.yaml 文件

assets:
    - assets/

您的小部件:

Image.asset('assets/human.jpg'),

1- 确保你写的图片路径正确

2- 在终端中写入此命令

flutter pub get

或者如果您使用 vsCode 操作 pubspec.yaml 并单击 Ctrl + s

更改您的 pubspec.yaml 文件

来自

 - assets/human.jpg

至此

assets:
    - assets/

和你的

child : Image(
   image : AssetImage("assets/human.jpg")
   )
)

最后确保您的 space 在资产

之前
 (2 empty spces or 1 tab)    assets:
  (4 empty spces or 2 tabs)      - assets/