useFitView static method

bool useFitView({
  1. required double maxSize,
  2. required Size constraints,
  3. required Axis axis,
  4. required int length,
})

Indicates whether a FitView would be used with the provided maxSize, constraints, axis and length.

Implementation

static bool useFitView({
  required double maxSize,
  required Size constraints,
  required Axis axis,
  required int length,
}) {
  var size = min(
    maxSize,
    axis == Axis.horizontal
        ? constraints.height / length
        : constraints.width / length,
  );

  if (axis == Axis.horizontal) {
    return (size * length >= constraints.height);
  } else {
    return (size * length >= constraints.width);
  }
}