isTablet static method
Implementation
static isTablet(BuildContext context) {
double width = MediaQuery.of(context).size.width;
return width < ScreenSizes.Tablet;
}
static isTablet(BuildContext context) {
double width = MediaQuery.of(context).size.width;
return width < ScreenSizes.Tablet;
}