isExtraLargeScreen function
Checks if the screen size is considered extra-large (width > 1100).
Implementation
bool isExtraLargeScreen(BuildContext context) => _screenSize(context, (width) => width > largeScreenSize);
Checks if the screen size is considered extra-large (width > 1100).
bool isExtraLargeScreen(BuildContext context) => _screenSize(context, (width) => width > largeScreenSize);