maui icon indicating copy to clipboard operation
maui copied to clipboard

Pick multiple files with MediaPicker

Open jfversluis opened this issue 8 months ago • 3 comments

Implement the ability to pick multiple files at once through MediaPicker.

I think what would make most sense to add a property like SelectionLimit to the MediaPickerOptions object that defaults to 1.

public class MediaPickerOptions
{
   /// <summary>
   /// Gets or sets the maximum count of media items to pick.
   /// The default value is 1.
   /// </summary>
   public int SelectionLimit { get; set; } = 1;
}

Q: Is there a maximum per platform? Q: Is this functionality available on all platforms? Q: Can we mix images and videos? On all platforms?

jfversluis avatar Apr 18 '25 18:04 jfversluis

This would be super useful. Multiple clients asked us about multi selection!

AndreKraemer avatar May 02 '25 07:05 AndreKraemer

Same here, this feature would be really useful for our application

cvchris avatar May 08 '25 13:05 cvchris

Yep, same here, we could use this in our client's app

ewerspej avatar Jun 17 '25 12:06 ewerspej

Implemented with #30002

jfversluis avatar Jun 26 '25 09:06 jfversluis