2

Here is my code

I ve implemented pagination with NotificationListener as well

1 Answers1

4

Add the gaplessPlayback: true propertie when you're rendering the images. It has to be something like that:

Image myImg = Image.memory(
      base64Decode(base64Image),
      height: 150,
      width: 180,
      fit: BoxFit.cover,
      gaplessPlayback: true, // add this
    );
Gabriel Arruda
  • 487
  • 5
  • 10
  • whats about base64image in container decoration image, gaplessPlayBack not working with MemoryImage(). Please help. – Sunil Apr 27 '22 at 11:22