gif_view 0.2.0 copy "gif_view: ^0.2.0" to clipboard
gif_view: ^0.2.0 copied to clipboard

Load GIF images and can set framerate

pub package

GifView #

Load GIF images and can set framerate

Features #

With GifView you can load GIF images of easy way and can configure frameRate.

  • Load from Assets;
  • Load from Network;
  • Load from Memory;
  • Set frame rate;
  • Listen when start (onStart), change frame (onChange) and finish (onFinish) animation.
  • Set progress while loading GIF

Getting started #

Add gif_view as a dependency in your pubspec.yaml file.

Usage #

GIF from Asset #

  GifView.asset(
    'assets/gif1.gif',
    height: 200,
    width: 200,
    frameRate: 30, // default is 15 FPS
  )

GIF from Network #

  GifView.network(
    'https://www.showmetech.com.br/wp-content/uploads/2015/09/happy-minion-gif.gif',
    height: 200,
    width: 200,
  )

GIF from Memory #

  GifView.memory(
    _bytes,
    height: 200,
    width: 200,
  )