positionedDirectional method
Implementation
Widget positionedDirectional({
Key? key,
double? start,
double? end,
double? top,
double? bottom,
double? width,
double? height,
bool animate = false,
}) =>
animate
? _StyledAnimatedBuilder(
key: key,
builder: (animation) {
return AnimatedPositionedDirectional(
child: this,
duration: animation.duration,
curve: animation.curve,
start: start,
end: end,
top: top,
bottom: bottom,
width: width,
height: height,
);
},
)
: PositionedDirectional(
key: key,
child: this,
start: start,
end: end,
top: top,
bottom: bottom,
width: width,
height: height,
);