3

Here is my code

I ve implemented pagination with NotificationListener as well

1
  • Please put the relevant code in the question itself as links can change and it's just easier for us. Commented May 14, 2020 at 0:21

1 Answer 1

6

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
    );
Sign up to request clarification or add additional context in comments.

1 Comment

whats about base64image in container decoration image, gaplessPlayBack not working with MemoryImage(). Please help.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.