Closed
Description
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?