isLandscape property

bool get isLandscape

Returns true if the screen is in landscape mode.

Example:

if (context.isLandscape) { ... }

Implementation

bool get isLandscape => MediaQuery.of(this).orientation == Orientation.landscape;