isTabletScreen function

bool isTabletScreen(
  1. BuildContext context
)

Implementation

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