maxHeightOf static method
Implementation
static double maxHeightOf(BuildContext context) {
final container = maybeOf(context);
return min(
(container?.maxHeight ?? MediaQuery.of(context).size.height),
900,
);
}
static double maxHeightOf(BuildContext context) {
final container = maybeOf(context);
return min(
(container?.maxHeight ?? MediaQuery.of(context).size.height),
900,
);
}