Julian Steenbakker
Committed by GitHub

Merge pull request #435 from AdityaBirangal/patch-1

fix: Example - iOS Keys
Showing 1 changed file with 10 additions and 0 deletions
... ... @@ -38,6 +38,16 @@ NSCameraUsageDescription - describe why your app needs access to the camera. Thi
**If you want to use the local gallery feature from [image_picker](https://pub.dev/packages/image_picker)**
NSPhotoLibraryUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Usage Description in the visual editor.
Example,
```
<key>NSCameraUsageDescription</key>
<string>This app needs camera access to scan QR codes</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>This app needs photos access to get QR code from photo library</string>
```
### macOS
Ensure that you granted camera permission in XCode -> Signing & Capabilities:
... ...