hnvn / flutter_image_cropper

A Flutter plugin for Android and iOS supports cropping images
969 stars 375 forks source link

image_cropper package in flutter lockAspectRatio: true, not working in ios app but android workking fine #462

Open vijayulektz opened 5 months ago

vijayulektz commented 5 months ago

my code await ImageCropper().cropImage( sourcePath: image.path, aspectRatioPresets: [ CropAspectRatioPreset.square ], uiSettings: [ AndroidUiSettings( lockAspectRatio: true), IOSUiSettings( resetAspectRatioEnabled:false, aspectRatioLockEnabled: true, ) ], )

i want ios app user can't change aspect ratio size in image croper

kj10yutr1995 commented 3 months ago

@vijayulektz

Try this one!

await ImageCropper().cropImage(
sourcePath: image.path,
+ aspectRatio: CropAspectRatio(ratioX: 1, ratioY: 1), // your aspect ratio
aspectRatioPresets: [
CropAspectRatioPreset.square
],
uiSettings: [
AndroidUiSettings(
lockAspectRatio: true),
IOSUiSettings(
resetAspectRatioEnabled:false,
aspectRatioLockEnabled: true,
)
],
)
arslanmirza007 commented 5 days ago

@vijayulektz facing the same issue. Have u find any solution ?