lykhonis / image_crop

A flutter plugin to crop image on iOS and Android.
Apache License 2.0
327 stars 200 forks source link

Not working with flutter 3.7.0 #99

Open vikramsinghrajpoot opened 1 year ago

vikramsinghrajpoot commented 1 year ago

Cropping not working proeprly with flutter 3.7.0 final cropKey = GlobalKey(); /// Initialise

Container( color: Colors.black, padding: const EdgeInsets.symmetric(vertical: 10.0, horizontal: 10.0), child: Crop.file(widget.file, key: cropKey)) /// Use

final area = cropKey.currentState.area;

area comming nill with black screen

iazel commented 1 year ago

Hi, I ended up rewriting this plugin and opened a PR #102.

I've updated it to the latest stable flutter version, hence it should solve your issue. Let me know if you find it useful :)