isLandscape static method

bool isLandscape(
  1. BuildContext context
)

Implementation

static bool isLandscape(BuildContext context) {
  bool isLandscap = isPortrait(context);
  return !isLandscap;
}