flutter_image_cropper
flutter_image_cropper copied to clipboard
Crop only square
How to crop only squre but not rectangle?
I use the code below and it worked for me to crop only square:
final croppedFile = await ImageCropper.cropImage(
sourcePath: imageFile.path,
aspectRatio: const CropAspectRatio(ratioX: 1, ratioY:1),
...
I try solution above but it still not working. Anyone help please