isTablet property
bool
get
isTablet
Whether the screen width is 600-1199 logical pixels.
Implementation
bool get isTablet => screenWidth >= 600 && screenWidth < 1200;
Whether the screen width is 600-1199 logical pixels.
bool get isTablet => screenWidth >= 600 && screenWidth < 1200;