Greyed-Out Documents in Document Picker - React Native

Viewed 326

I am using react-native-document-picker and cannot get the images to be selectable. They are always greyed out.

const file = await DocumentPicker.pick({
   type: [DocumentPicker.types.allFiles]
});

I've even tried adding the specific file formats that I'm trying to select. I've also tried removing the type param from the config. Nothing has worked.

enter image description here

1 Answers
Related