align method
T
align(
- AlignmentGeometry Alignment, {
- double? heightFactor,
- double? widthFactor,
- Duration? duration,
- Curve? curve,
- VoidCallback? onEnd,
Adds UiAlign.
Implementation
T align(
// ignore: non_constant_identifier_names
AlignmentGeometry Alignment, {
double? heightFactor,
double? widthFactor,
Duration? duration,
Curve? curve,
VoidCallback? onEnd,
}) =>
addChild(UiAlign(
alignment: Alignment,
duration: duration,
curve: curve,
onEnd: onEnd,
heightFactor: heightFactor,
widthFactor: widthFactor,
));