@@ -44,8 +44,7 @@ class _CropDragPoints extends StatelessWidget {
4444 delta: details.delta,
4545 moveSpecificCropCornerFnc: cropUtils.moveTopLeftCorner,
4646 ),
47- child:
48- dragPointBuilder? .call (
47+ child: dragPointBuilder? .call (
4948 dragPointSize,
5049 CropDragPointPosition .topLeft,
5150 ) ??
@@ -61,8 +60,7 @@ class _CropDragPoints extends StatelessWidget {
6160 delta: details.delta,
6261 moveSpecificCropCornerFnc: cropUtils.moveTopRightCorner,
6362 ),
64- child:
65- dragPointBuilder? .call (
63+ child: dragPointBuilder? .call (
6664 dragPointSize,
6765 CropDragPointPosition .topRight,
6866 ) ??
@@ -78,8 +76,7 @@ class _CropDragPoints extends StatelessWidget {
7876 delta: details.delta,
7977 moveSpecificCropCornerFnc: cropUtils.moveBottomLeftCorner,
8078 ),
81- child:
82- dragPointBuilder? .call (
79+ child: dragPointBuilder? .call (
8380 dragPointSize,
8481 CropDragPointPosition .bottomLeft,
8582 ) ??
@@ -95,8 +92,7 @@ class _CropDragPoints extends StatelessWidget {
9592 delta: details.delta,
9693 moveSpecificCropCornerFnc: cropUtils.moveBottomRightCorner,
9794 ),
98- child:
99- dragPointBuilder? .call (
95+ child: dragPointBuilder? .call (
10096 dragPointSize,
10197 CropDragPointPosition .bottomRight,
10298 ) ??
@@ -116,13 +112,13 @@ class _CropDragPoints extends StatelessWidget {
116112 required Offset delta,
117113 Rect ? cropRect,
118114 Rect ? imageRect,
119- })
120- moveSpecificCropCornerFnc,
121- }) => controller.cropRect = moveSpecificCropCornerFnc (
122- cropRect: controller.cropRect,
123- imageRect: controller.imageRectNotifier.value,
124- delta: delta,
125- );
115+ }) moveSpecificCropCornerFnc,
116+ }) =>
117+ controller.cropRect = moveSpecificCropCornerFnc (
118+ cropRect: controller.cropRect,
119+ imageRect: controller.imageRectNotifier.value,
120+ delta: delta,
121+ );
126122
127123 @override
128124 void debugFillProperties (DiagnosticPropertiesBuilder properties) {
0 commit comments