Stage constructor
const
Stage({
- Key? key,
- required Widget child,
- Map<
DragStart, DragGesture> ? drag, - Map<
ScaleStart, ScaleGesture> ? scale, - GestureConstraints? constraints,
- OnRelease? onRelease,
- OnStageTap? onTap,
- OnStageTap? onDoubleTap,
- double? doubleTapPullFactor,
- DragPromote? dragPromote,
- double? scaleVelocityCancel,
- Overrides? overrides,
- WidgetBuilder? overlay,
- DragHybrid? dragHybridFromStage,
- ScaleHybrid? scaleHybridFromStage,
Implementation
const Stage({
super.key,
required this.child,
this.drag,
this.scale,
this.constraints,
this.onRelease,
this.onTap,
this.onDoubleTap,
this.doubleTapPullFactor,
this.dragPromote,
this.scaleVelocityCancel,
this.overrides,
this.overlay,
this.dragHybridFromStage,
this.scaleHybridFromStage,
});