-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Description
import { PermissionsAndroid } from 'react-native';
funcion () {
const permission = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
{
title: '',
message: '',
buttonNeutral: 'Ask Me Later',
buttonNegative: 'Cancel',
buttonPositive: 'OK'
}
);
if (permission === 'denied') return;
if (permission === 'granted') {
// YOUR WRITE FUNCTION HERE
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels