chooyan-eng / crop_your_image

A flutter plugin which provides Crop Widget for cropping images.
https://pub.dev/packages/crop_your_image
Apache License 2.0
163 stars 139 forks source link

Is it possible to put a limit to the zoom? #123

Closed KingOfPeru closed 9 months ago

chooyan-eng commented 9 months ago

@KingOfPeru Added allowScale function to Crop constructor to version 1.0.0-dev.1.

Try the snippet below.

const maxScale = 3.0;
Crop(
  allowScale: (newScale) => newScale < maxScale,
),
chooyan-eng commented 9 months ago

@KingOfPeru Sorry for confusion, but allowScale is renamed to willUpdateScale from 1.0.0-dev.2 for a versatility reason.

https://github.com/chooyan-eng/crop_your_image/pull/127