isSmallScreen function
Checks if the screen size is considered small (width <= 400).
Implementation
bool isSmallScreen(BuildContext context) => _screenSize(context, (width) => width <= smallScreenSize);
Checks if the screen size is considered small (width <= 400).
bool isSmallScreen(BuildContext context) => _screenSize(context, (width) => width <= smallScreenSize);