fractionallySized method
Wrap the widget in a FractionallySizedBox widget.
Implementation
Widget fractionallySized({
Alignment alignment = Alignment.center,
double widthFactor = 1.0,
double heightFactor = 1.0,
}) =>
FractionallySizedBox(
alignment: alignment,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
);