alignXY method

Align alignXY(
  1. double x,
  2. double y, {
  3. Key? key,
  4. double? heightFactor,
  5. double? widthFactor,
})

Implementation

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