final _controller = CropController(); Widget build(BuildContext context) { return Crop( image: _imageData, controller: _controller, onCropped: (image) { // do something with image data } ); }Then, Crop widget will automatically display cropping editor UI on users screen with given image....