1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Flutter での Image.asset と AssetImage の違い

Posted at

メモ:

Flutter で自分のフォルダ内の画像を取得する方法として、

Image.asset(ファイル名),

のように指定するやり方と、

Image(image: AssetImage(ファイル名)),

のようなやり方がある。

この2つの違いを調べてみると、Image.assetは内部でAssetImageを使っているということらしい。(参考URL)

つまり、AssetImage の方が、実行スピードが僅かに早くなる。と思われる。
1枚の画像なら大した問題にならないと思うが、大量に画像を出す時は AssetImage の使用がいいかもしれない。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?