Flutter image picker and cropper.
Example project for image picker using camera and gallery also cropping.
// In async method:
var image = await ImagePicker.pickImage(
source: ImageSource.gallery,
imageQuality: 50
);
File croppedFile = await ImageCropper.cropImage(
sourcePath: image.path,
ratioX: 1.0,
ratioY: 1.0,
maxWidth: 600,
maxHeight: 600,
);