RafaelBarbosatec / gif_view

Load GIF images and can set framerate
MIT License
15 stars 18 forks source link

Stop at last frame #15

Closed kimsean closed 5 months ago

kimsean commented 1 year ago

Is it possible to stop animation at the last frame.

Saeeed-B commented 11 months ago

i use this

 late GifController _gifController = GifController(
      autoPlay: true,
      loop: false,
      inverted: false,
      onFrame: (frame) =>
          {print(frame), if (frame >= 190) _gifController.pause()}
);

puse the gif before end