isShortScreen static method

bool isShortScreen(
  1. BuildContext context
)

Implementation

static bool isShortScreen(BuildContext context) {
  return MediaQuery.of(context).size.height < shortScreenBreakpoint;
}