alignAtLERP method
Aligns the widget at a linear interpolation between two alignments.
Implementation
Align alignAtLERP(
Alignment a,
Alignment b,
double t, {
Key? key,
double? heightFactor,
double? widthFactor,
}) =>
Align(
key: key,
alignment: Alignment.lerp(a, b, t)!,
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);