alignXY method
Implementation
Align alignXY(final double x, final double y, {final Key? key, final double? heightFactor, final double? widthFactor}) => Align(
key: key,
alignment: Alignment(x, y),
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);