alignAt method

  1. @Deprecated("This Extension is no longer available; please use a Widget to describe it. このExtensionは使えなくなります。Widgetで記述してください。")
Align alignAt(
  1. Alignment alignment, {
  2. Key? key,
  3. double? heightFactor,
  4. double? widthFactor,
})

Move Widget to alignment.

Widgetalignmentに寄せます。

Implementation

@Deprecated(
  "This Extension is no longer available; please use a Widget to describe it. このExtensionは使えなくなります。Widgetで記述してください。",
)
Align alignAt(
  Alignment alignment, {
  Key? key,
  double? heightFactor,
  double? widthFactor,
}) {
  return Align(
    key: key,
    alignment: alignment,
    heightFactor: heightFactor,
    widthFactor: widthFactor,
    child: this,
  );
}