ExtendedInteractiveViewer constructor

const ExtendedInteractiveViewer({
  1. Key? key,
  2. required Widget child,
  3. bool enableInteraction = true,
  4. required ZoomConfigs zoomConfigs,
  5. required GestureScaleStartCallback? onInteractionStart,
  6. required GestureScaleUpdateCallback? onInteractionUpdate,
  7. required GestureScaleEndCallback? onInteractionEnd,
  8. dynamic onMatrix4Change(
    1. Matrix4 value
    )?,
  9. Matrix4? initialMatrix4,
})

Creates an ExtendedInteractiveViewer with the given parameters.

Implementation

const ExtendedInteractiveViewer({
  super.key,
  required this.child,
  this.enableInteraction = true,
  required this.zoomConfigs,
  required this.onInteractionStart,
  required this.onInteractionUpdate,
  required this.onInteractionEnd,
  this.onMatrix4Change,
  this.initialMatrix4,
});