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.
