에러 및 오류

[Flutter 에러] Flutter web can't load network image from another domain

유호야 2022. 12. 19. 22:50
반응형

강의 수강하면서 잘 따라가고 있었는데 갑자기 등장한 에러로 며칠을 보냈다.........

이미지가 잘만 불러와졌었는데 갑자기 이미지가 안 불러와진다고 하고 
막상 도메인을 입력해보면 주소에는 문제가 없어서... 머리를 싸맸었는데데

 

════════ Exception caught by image resource service ════════════════════════════
Failed to load network image.
Image URL: https://shared-comic.pstatic.net/thumb/webtoon/728750/thumbnail/thumbnail_IMAG21_47c21251-b213-4882-bacc-15adce1acfc8.jpg
Trying to load an image from another domain? Find answers at:
https://flutter.dev/docs/development/platform-integration/web-images

 

늘 이러한 문제의 구세주는 스택오버플로우........!

 

Flutter web can't load network image from another domain

I can't load network images in flutter web from other domains with API calls. getting this error Trying to load an image from another domain? Find answers at: https://flutter.dev/docs/development/

stackoverflow.com

 

이것만 추가했을 때는 안 됐는데

Terminal에

flutter run -d chrome --web-renderer html

 

위의 코드를 입력했더니 감격스럽게도 해결이 되었다!

 

반응형