isXLarge static method

bool isXLarge(
  1. BuildContext context
)

Check if the screen size is xlarge

Implementation

static bool isXLarge(BuildContext context) {
  return MediaQuery.of(context).size.width >= _xlMinWidth;
}