[Flutter] 이미지 렌더링 오류 - 2
Featured image of post [Flutter] 이미지 렌더링 오류 - 2

[Flutter] 이미지 렌더링 오류 - 2

Unable to load asset: ~

에러 내용

Image.asset을 이용해서 파일 경로로 이미지를 불러왔을 때 발생한 오류

1
2
3
4
5
6
7
8
9
(main.dart)

...
Image.asset(
  'images/google-logo.png',
  width: 70,
  fit: BoxFit.fill,
),
...

에러 사진

image


원인

pubspec.yaml에 assets를 추가해주지 않아 발생하게 된 것


해결방법

pubspec.yaml 파일에 flutter > assets > images/ 라고 추가해줘야 이미지를 불러올 수 있게 됩니다.

즉, 사용할 assets의 경로를 설정해줘야합니다.

image

참고자료

https://security-nanglam.tistory.com/479

Built with Hugo
Theme Stack designed by Jimmy