isTabletScreen function
Implementation
bool isTabletScreen(BuildContext context) {
final width = MediaQuery.of(context).size.shortestSide;
return width >= 768;
}
bool isTabletScreen(BuildContext context) {
final width = MediaQuery.of(context).size.shortestSide;
return width >= 768;
}