alignXY method
Aligns the widget at a specific x and y coordinate within its parent.
Implementation
Align alignXY(
double x,
double y, {
Key? key,
double? heightFactor,
double? widthFactor,
}) =>
Align(
key: key,
alignment: Alignment(x, y),
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);