isLandscape method

bool isLandscape(
  1. BuildContext context
)

Implementation

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