isTablet static method
Implementation
static bool isTablet(BuildContext context) {
var shortestSide = MediaQuery.of(context).size.shortestSide;
return shortestSide >= 600; // Typically, tablets have a minimum width of 600dp
}
static bool isTablet(BuildContext context) {
var shortestSide = MediaQuery.of(context).size.shortestSide;
return shortestSide >= 600; // Typically, tablets have a minimum width of 600dp
}