이미지가 출력이 안될때!
🦥 이미지 출력 이슈
pubspec.yaml 파일에 이미지 경로를 잘 입력을 했는데도 이미지가 안나오는 경우가 있다.
터미널에 뜨는 이슈
Unable to load asset: assets/images/logo.png.
변경 전
Image.asset('asset/img/logo.png')
변경 후
Image(image: AssetImage("asset/img/logo.png")
체크사항
flutter fub get 후에 앱 재시작하기 디렉토리 구조와 pubspec.yaml 파일에 작성법이 알맞게 작성이 되었는지 확인하기
Leave a comment