ExtendedInteractiveViewer constructor
const
ExtendedInteractiveViewer({
- Key? key,
- required Widget child,
- bool enableInteraction = true,
- required EdgeInsets boundaryMargin,
- required bool enableZoom,
- required double minScale,
- required double maxScale,
- required GestureScaleStartCallback? onInteractionStart,
- required GestureScaleUpdateCallback? onInteractionUpdate,
- required GestureScaleEndCallback? onInteractionEnd,
Creates an ExtendedInteractiveViewer with the given parameters.
Implementation
const ExtendedInteractiveViewer({
super.key,
required this.child,
this.enableInteraction = true,
required this.boundaryMargin,
required this.enableZoom,
required this.minScale,
required this.maxScale,
required this.onInteractionStart,
required this.onInteractionUpdate,
required this.onInteractionEnd,
});