sizePercent static method

FloretParent<FractionallySizedBox> sizePercent(
  1. double width,
  2. double height
)

Implementation

static FloretParent<FractionallySizedBox> sizePercent(
        double width, double height) =>
    (Widget child) => FractionallySizedBox(
          child: child,
          widthFactor: width / 100,
          heightFactor: height / 100,
        );