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