aloisdeniel / media_gallery

A Flutter plugin that lists native gallery items.
MIT License
87 stars 33 forks source link

Android 11 Image and Video not in sequence (created by time). #29

Open sahhilll opened 3 years ago

sahhilll commented 3 years ago

Images and videos are in random sequence in album view and collection view in Android 10 and Android 11.

I tried sorting using:

List<MediaPage> pages = [];

      pages.add(
        await widget.collection.getMedias(
          mediaType: widget.mediaType,
          take: 50,
        ),
      );

pages.first.items..sort((x, y) => x.creationDate.compareTo(y.creationDate)); 

but it didn't work

On android less than 10 it is working as expected.