isLandscape static method

dynamic isLandscape(
  1. dynamic context
)

Implementation

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