Closed boskokg closed 5 years ago
v3.0.0 was released to Pub with the ability to filter by multiple MIME types. Example:
final params = FlutterDocumentPickerParams(
allowedMimeTypes: ['application/pdf', 'image/png'],
);
final path = await FlutterDocumentPicker.openDocument(params: params);
How can I only see and select .gpx files? Appreciate your answer. :-)
Hello, Thanks for this plugin. Can you add support for multiple mime types instead of only single one? For example, I would like to filter only pdf and image files (image/*|application/pdf)