isSmallScreen static method
Small screen is any screen whose width is less than smallScreenBreakPoint pixels
Implementation
static bool isSmallScreen(BuildContext context) {
return MediaQuery.of(context).size.width < smallScreenBreakPoint;
}
Small screen is any screen whose width is less than smallScreenBreakPoint pixels
static bool isSmallScreen(BuildContext context) {
return MediaQuery.of(context).size.width < smallScreenBreakPoint;
}