fitted method

Widget fitted({
  1. BoxFit fit = BoxFit.contain,
  2. Alignment alignment = Alignment.center,
})

Wraps the widget with a FittedBox that adapts to the screen size.

Implementation

Widget fitted({
  BoxFit fit = BoxFit.contain,
  Alignment alignment = Alignment.center,
}) {
  return FittedBox(
    fit: fit,
    alignment: alignment,
    child: this,
  );
}