shorterScreenSize static method

double shorterScreenSize(
  1. BuildContext context
)

Implementation

static double shorterScreenSize(BuildContext context) {
  var s = screenSize(context);
  return min(s.width, s.height);
}