6
2

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] gifファイルで簡単アニメーション再生

Last updated at Posted at 2020-05-14

1. はじめに

Flutterでgifファイルを再生する方法についての記事です。

Android/iOSとは異なり、Flutterだと標準パッケージかつpng/jpg等のファイルとの区別なく利用できます。
※もちろんソフトウェアデコードですので、CPUパワーは使います。

sample.gif

2. 使い方

png/jpgファイルのイメージファイルと同じように、単にgifファイルを指定するだけです。
とても簡単ですね。アニメーションをソースコードで書きたくない時はとっても便利かもしれません。

@override
Widget build(BuildContext context) {
  return Image(
    image: AssetImage('images/tenor.gif'),
    fit: BoxFit.cover,
  );
}
6
2
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
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?