InteractiveViewerBoundary constructor

const InteractiveViewerBoundary({
  1. required Widget child,
  2. required double boundaryWidth,
  3. TransformationController? controller,
  4. ScaleChanged? onScaleChanged,
  5. VoidCallback? onLeftBoundaryHit,
  6. VoidCallback? onRightBoundaryHit,
  7. VoidCallback? onNoBoundaryHit,
  8. double? maxScale,
  9. double? minScale,
})

Implementation

const InteractiveViewerBoundary({
  required this.child,
  required this.boundaryWidth,
  this.controller,
  this.onScaleChanged,
  this.onLeftBoundaryHit,
  this.onRightBoundaryHit,
  this.onNoBoundaryHit,
  this.maxScale,
  this.minScale,
});