|
|
|
|
@ -256,6 +256,7 @@ class PhotoView extends StatefulWidget {
|
|
|
|
|
this.onDragEnd,
|
|
|
|
|
this.onDragUpdate,
|
|
|
|
|
this.onScaleEnd,
|
|
|
|
|
this.onLongPressStart,
|
|
|
|
|
this.customSize,
|
|
|
|
|
this.gestureDetectorBehavior,
|
|
|
|
|
this.tightMode,
|
|
|
|
|
@ -294,6 +295,7 @@ class PhotoView extends StatefulWidget {
|
|
|
|
|
this.onDragEnd,
|
|
|
|
|
this.onDragUpdate,
|
|
|
|
|
this.onScaleEnd,
|
|
|
|
|
this.onLongPressStart,
|
|
|
|
|
this.customSize,
|
|
|
|
|
this.gestureDetectorBehavior,
|
|
|
|
|
this.tightMode,
|
|
|
|
|
@ -401,6 +403,10 @@ class PhotoView extends StatefulWidget {
|
|
|
|
|
/// particular location.
|
|
|
|
|
final PhotoViewImageScaleEndCallback? onScaleEnd;
|
|
|
|
|
|
|
|
|
|
/// A pointer that might cause a tap has contacted the screen at a particular
|
|
|
|
|
/// location.
|
|
|
|
|
final PhotoViewImageLongPressStartCallback? onLongPressStart;
|
|
|
|
|
|
|
|
|
|
/// [HitTestBehavior] to be passed to the internal gesture detector.
|
|
|
|
|
final HitTestBehavior? gestureDetectorBehavior;
|
|
|
|
|
|
|
|
|
|
@ -537,6 +543,7 @@ class _PhotoViewState extends State<PhotoView>
|
|
|
|
|
onDragEnd: widget.onDragEnd,
|
|
|
|
|
onDragUpdate: widget.onDragUpdate,
|
|
|
|
|
onScaleEnd: widget.onScaleEnd,
|
|
|
|
|
onLongPressStart: widget.onLongPressStart,
|
|
|
|
|
outerSize: computedOuterSize,
|
|
|
|
|
gestureDetectorBehavior: widget.gestureDetectorBehavior,
|
|
|
|
|
tightMode: widget.tightMode,
|
|
|
|
|
@ -566,6 +573,7 @@ class _PhotoViewState extends State<PhotoView>
|
|
|
|
|
onDragEnd: widget.onDragEnd,
|
|
|
|
|
onDragUpdate: widget.onDragUpdate,
|
|
|
|
|
onScaleEnd: widget.onScaleEnd,
|
|
|
|
|
onLongPressStart: widget.onLongPressStart,
|
|
|
|
|
outerSize: computedOuterSize,
|
|
|
|
|
gestureDetectorBehavior: widget.gestureDetectorBehavior,
|
|
|
|
|
tightMode: widget.tightMode,
|
|
|
|
|
@ -649,6 +657,13 @@ typedef PhotoViewImageScaleEndCallback = Function(
|
|
|
|
|
PhotoViewControllerValue controllerValue,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/// A type definition for a callback when the user long press start
|
|
|
|
|
typedef PhotoViewImageLongPressStartCallback = Function(
|
|
|
|
|
BuildContext context,
|
|
|
|
|
LongPressStartDetails details,
|
|
|
|
|
PhotoViewControllerValue controllerValue,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/// A type definition for a callback to show a widget while the image is loading, a [ImageChunkEvent] is passed to inform progress
|
|
|
|
|
typedef LoadingBuilder = Widget Function(
|
|
|
|
|
BuildContext context,
|
|
|
|
|
|