alignAt method
- @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,
})
Move Widget to alignment
.
Widgetをalignment
に寄せます。
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,
);
}