isLandscape static method

bool isLandscape(
  1. BuildContext context
)

Check if device is in landscape mode

Implementation

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