ExtendedInteractiveViewer constructor

const ExtendedInteractiveViewer({
  1. Key? key,
  2. required Widget child,
  3. bool enableInteraction = true,
  4. required bool editorIsZoomable,
  5. required double minScale,
  6. required double maxScale,
  7. required GestureScaleStartCallback? onInteractionStart,
  8. required GestureScaleUpdateCallback? onInteractionUpdate,
  9. required GestureScaleEndCallback? onInteractionEnd,
})

Creates an ExtendedInteractiveViewer with the given parameters.

Implementation

const ExtendedInteractiveViewer({
  super.key,
  required this.child,
  this.enableInteraction = true,
  required this.editorIsZoomable,
  required this.minScale,
  required this.maxScale,
  required this.onInteractionStart,
  required this.onInteractionUpdate,
  required this.onInteractionEnd,
});