sidlatau / flutter_document_picker

Allows user pick a document. Picked document is copied to app temporary directory. Optionally allows pick document with specific extension only.
Apache License 2.0
41 stars 29 forks source link

allowedMimeTypes supress selecting the mime type #44

Open asavchuk opened 1 year ago

asavchuk commented 1 year ago

According to docs, Flutter Document Picker parameter allowedMimeTypes allows to list mime types which will be shown in select dialog.

/// Android only. Allowed MIME types. /// Only files with provided MIME types will be shown in document picker. /// If list is null or empty - */* MIME type will be used.

Instead, when I use allowedMimeTypes: ['text/csv'] then csv file is not allowed to select in picker. The file is in grey color i.e. it innactive in select screen.

  final FlutterDocumentPickerParams params = FlutterDocumentPickerParams(
    allowedMimeTypes: ['text/csv'],
  );

So what's the purpose of this parameter then?

alexei-kruk-idf commented 1 year ago

@asavchuk try this line 'text/comma-separated-values'