positioned method
T
positioned({})
Adds UiPositioned.
Implementation
T positioned({
double? left,
double? top,
double? right,
double? bottom,
double? width,
double? height,
Duration? duration,
Curve? curve,
VoidCallback? onEnd,
}) {
return addChild(UiPositioned(
left: left,
top: top,
right: right,
bottom: bottom,
height: height,
width: width,
duration: duration,
curve: curve,
onEnd: onEnd,
));
}