flutter_image_picker/example/lib/main.dart
Freek van de Ven 7458b06fc0 Fix permission handling in image picker
Add permission handling for image picker to prevent crashes when permission is denied.

* **Android Manifest**: Add permissions for reading and writing external storage.
* **Permission Service**: Create a new service to handle permission requests using the `permission_handler` package.
* **Image Picker UI**: Modify the image picker to check and request permissions before accessing media. Show a popup if permission is denied.
* **Example App**: Update the example app to include permission handling and show a dialog if permission is denied.
* **Dependencies**: Add `permission_handler` dependency in `pubspec.yaml`.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/Iconica-Development/flutter_image_picker?shareId=XXXX-XXXX-XXXX-XXXX).
2024-12-12 21:27:21 +01:00

177 lines
5.4 KiB
Dart

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_image_picker/flutter_image_picker.dart';
import 'package:permission_handler/permission_handler.dart';
void main() {
runApp(const ImagePickerExample());
}
class ImagePickerExample extends StatelessWidget {
const ImagePickerExample({
super.key,
});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Image Picker Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const ImagePickerExampleHomePage(
title: 'Flutter Image Picker Example'),
);
}
}
class ImagePickerExampleHomePage extends StatefulWidget {
const ImagePickerExampleHomePage({
required this.title,
super.key,
});
final String title;
@override
ImagePickerExampleHomePageState createState() =>
ImagePickerExampleHomePageState();
}
class ImagePickerExampleHomePageState
extends State<ImagePickerExampleHomePage> {
final double whiteSpace = 20;
final double imageWidth = 300;
final String placeholder = 'assets/images/placeholder.png';
final String imageAlreadyDisplayedMessage =
'The selected image is already being displayed!';
Uint8List? uploadedImage;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
actions: [
IconButton(
onPressed: () {
setState(() {
uploadedImage = null;
});
},
icon: const Icon(Icons.delete))
],
),
body: Center(
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Column(children: [
if (uploadedImage == null) ...[
Image.asset(
placeholder,
width: imageWidth,
height: imageWidth,
)
] else ...[
Image.memory(
uploadedImage!,
width: imageWidth,
height: imageWidth,
)
]
]),
SizedBox(height: whiteSpace),
const Text(
'Pick an image or make a photo!',
),
SizedBox(height: whiteSpace / 2),
ElevatedButton(
onPressed: pickImage,
key: const Key("PickImageButton"),
child: const Text('Pick Image')),
SizedBox(height: whiteSpace),
],
),
),
),
);
}
Future<bool> _requestPermission(Permission permission) async {
if (await permission.isGranted) {
return true;
} else {
var result = await permission.request();
if (result == PermissionStatus.granted) {
return true;
} else {
return false;
}
}
}
void _showPermissionDeniedDialog() {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: const Text('Permission Denied'),
content: const Text(
'We need permission to access your media to use this feature.'),
actions: <Widget>[
TextButton(
child: const Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}
/// The [pickImage] function is used to show the usage of the Image Picker Package.
/// The most important part is the [ImagePicker] call.
/// You can add a custom [ImagePickerTheme] to the [ImagePicker] if you want to change some of the UI.
/// An example on how to do that is: ImagePickerTheme(imagePickerTheme: const ImagePickerTheme(title: "Image Picker")).
/// As a whole you get `ImagePicker(ImagePickerTheme(imagePickerTheme: const ImagePickerTheme(title: "Image Picker")))`
/// Check the README for all possible parameters you can add in the [ImagePickerTheme].
/// You can also add a custom Button as a Widget to the Image Picker Dialog.
/// This function saves the image in a variable and if it's different than the current image it will get displayed in the application.
/// When the same image is chosen there will be a snackbar popping up to let you know it's already being displayed.
void pickImage() async {
if (await _requestPermission(Permission.storage)) {
Uint8List? imageInBytes = await showModalBottomSheet<Uint8List?>(
context: context,
backgroundColor: Colors.white,
builder: (BuildContext context) => ImagePicker(
onError: (error) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(error.message ?? "An error occurred")),
);
},
));
if (imageInBytes != null) {
if (!listEquals(uploadedImage, imageInBytes)) {
setState(() {
uploadedImage = imageInBytes;
});
} else {
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(imageAlreadyDisplayedMessage)),
);
}
}
imageInBytes = null;
} else {
_showPermissionDeniedDialog();
}
}
}