isTablet static method

bool isTablet()

Implementation

static bool isTablet() {
  final view = PlatformDispatcher.instance.implicitView!;
  final screenWidth = view.physicalSize.width / view.devicePixelRatio;

  return screenWidth > 800;
}