I’m using gif_view to control gif in flutter and when it finishes playing, it is coming to initial position, but I want it in last position itself.
final controller = GifController(loop: false);
GifView.asset(
"assets/1.gif",
controller: controller,
progress: const CircularProgressIndicator(),
),
even it is taking lot of time to load, so I want to fix this also
I’m expecting fix to both loading gif quickly and gif should not reset a after playing completely.