isXSmall static method

bool isXSmall(
  1. BuildContext context
)

Check if the screen size is xsmall

Implementation

static bool isXSmall(BuildContext context) {
  return MediaQuery.of(context).size.width < _smMinWidth;
}