isSmallScreen static method
Will return true if screen size is less than size.
size is default to 500
Implementation
static bool isSmallScreen(BuildContext context, {final double width = 500}) {
return MediaQuery.of(context).size.width <= width;
}