isTablet static method
Implementation
static bool isTablet() {
final view = PlatformDispatcher.instance.implicitView!;
final screenWidth = view.physicalSize.width / view.devicePixelRatio;
return screenWidth > 800;
}
static bool isTablet() {
final view = PlatformDispatcher.instance.implicitView!;
final screenWidth = view.physicalSize.width / view.devicePixelRatio;
return screenWidth > 800;
}