deviceIsMobileAndLandscape property

bool deviceIsMobileAndLandscape

Implementation

bool get deviceIsMobileAndLandscape {
  if (MediaQuery.of(this).size.shortestSide > 600) return false;
  return MediaQuery.of(this).orientation == Orientation.landscape;
}