Flutter Error - Flutter images not loaded( Unable to load asset)

루시Soo의 우와한 서재·2022년 4월 28일
0

Errors

목록 보기
1/2

발생 상황

pubspec.yaml 파일에 assets를 추가해주고 이미지가 있는 path도 지정해 둠. 하지만, main.dart에서 이미지가 안 불러와지는 현상. 안드로이드 스튜디오 emulator에는 위와 같은 문구가 나타남. Unable to load asset: ~~



해결 방안

pubspec.yaml 파일 안의 이미지 path의 구별자를 변경.
이때, 해당 에러는 윈도우 유저에게만 발생하는 에러로 추측됨

assets:
    - asset/img/

현재 pubspec.yaml에 어떤 구별자로 표시되어있나 살펴보고 반대 방향으로 위나 아래 코드와 같이 바꿔본다.
assets:
    - asset\img\


해당 오류가 발생되는 다른 원인들

  • Spelling mistake in the image name

  • Wrong Image path provided (Image doesn’t exist at specified location)

  • Wrong indentation for assetsin pubspec.yaml file

profile
그냥 끄적끄적 공부 정리 블로그

0개의 댓글