isLandscape static method

bool isLandscape()

Implementation

static bool isLandscape() {
  return MediaQueryData.fromView(
        WidgetsBinding.instance.platformDispatcher.views.first,
      ).orientation ==
      Orientation.landscape;
}