overflow method
T
overflow({
- double? minWidth,
- double? maxWidth,
- double? minHeight,
- double? maxHeight,
- AlignmentGeometry alignment = Alignment.center,
- Duration? duration,
- Curve? curve,
- VoidCallback? onEnd,
Adds UiOverflowBox.
Implementation
T overflow({
double? minWidth,
double? maxWidth,
double? minHeight,
double? maxHeight,
AlignmentGeometry alignment = Alignment.center,
Duration? duration,
Curve? curve,
VoidCallback? onEnd,
}) =>
addChild(UiOverflowBox(
minWidth: minWidth,
maxWidth: maxWidth,
minHeight: minHeight,
maxHeight: maxHeight,
alignment: alignment,
duration: duration,
curve: curve,
onEnd: onEnd,
));