LoginSignup
2
1

More than 1 year has passed since last update.

【Flutter】Flutter webで画像をURLごと読み込むときに表示されない対処法

Last updated at Posted at 2021-06-24

Flutter webで画像をURLごと読み込もうとしたときにxのような表示になってしましました。
その解消法を記述します。

スクリーンショット 0003-06-24 10.17.02.png

Flutter内で下記のようにURLごとimageファイルを読み込みます。

child: Image.asset('https://sample.com/images/sample.jpg'),

すると下記のようなエラーが表示されます。

Another exception was thrown: ImageCodecException: Failed to load network image.

原因はここに書いてありました。

デフォルトのレンダラーHTMLからcanvaskitに切り替わったようです。

The CanvasKit renderer implements Flutter’s image API fully. However, it requires access to image pixels to do so, and is therefore subject to the CORS policy.

解決方法

mobileで見るときはそのままでいけますがwebで見るときはcanvaskitの代わりにhtmlレンダラーを使用してくださいとのことのようです。

下記のコマンドで実行してみてください。

flutter run -d chrome --web-renderer html

これでxだった画像がうまく表示されたと思います。
Flutter Webのときは注意してください。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1