useFitView static method
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);
}
}