isLandscape static method

bool isLandscape(
  1. BuildContext context
)

Check if the device is in landscape orientation

Implementation

static bool isLandscape(BuildContext context) {
  return MediaQuery.of(context).orientation == Orientation.landscape;
}