2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Flutterのflutter_staggered_grid_viewについての注意喚起

Posted at

※ この記事の内容はflutter_staggered_grid_view 0.3.4時点での情報です。アップデートに伴ってパッケージが改善され、この不具合が発生しなくなっている可能性があります。

flutter_staggered_grid_view

Flutterで互い違いのいい感じのGrid Viewを実装するパッケージです。

pub.devのflutter_staggered_grid_viewのページより

困ったこと

GridView.builderのように任意の数の要素について上の画像のようなGrid Viewを生成するStaggeredGridView.countBuilderという関数があります。

このGrid Viewの各要素の中に画像を入れたのですが、このとき読み込まれた画像のキャシュが開放されずにメモリリークでアプリがクラッシュするという現象が発生しました。

結論

flutter_staggered_grid_viewを使用する際には要素数が無限であるか、画像がGrid Viewの要素の中に含まれているかを確認し、両方を満たす場合にはパッケージの使用を避けましょう。

関連ページ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?