PlatformException(photo_access_denied, The user did not allow photo access., null, null)

3.4k Views Asked by At

If the user didn't allow access to the photos to pick images, I want to ask him another time for the permission or open settings to change the permission, how to do that with image_cropper, how to access the permission and then ask the user again?

1

There are 1 best solutions below

1
On

You can use this package to get permission status https://pub.dev/packages/permission_handler

var status = await Permission.camera.status;
if (status.isDenied) {
  // Here you can open app settings so that the user can give permission
  openAppSettings();
}