isLargeScreen function
Checks if the screen size is considered large (800 < width <= 1100).
Implementation
bool isLargeScreen(BuildContext context) => _screenSize(context, (width) => width > mediumScreenSize && width <= largeScreenSize);
Checks if the screen size is considered large (800 < width <= 1100).
bool isLargeScreen(BuildContext context) => _screenSize(context, (width) => width > mediumScreenSize && width <= largeScreenSize);