sizeFactor static method

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

Implementation

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