isTablet static method
Returns true if the screen width is between 650 and 1100
Implementation
static bool isTablet(BuildContext context) =>
MediaQuery.of(context).size.width >= (650) &&
MediaQuery.of(context).size.width < (1100);
Returns true if the screen width is between 650 and 1100
static bool isTablet(BuildContext context) =>
MediaQuery.of(context).size.width >= (650) &&
MediaQuery.of(context).size.width < (1100);