isPortrait property

bool get isPortrait

Returns true if the screen is in portrait mode.

Example:

if (context.isPortrait) { ... }

Implementation

bool get isPortrait => MediaQuery.of(this).orientation == Orientation.portrait;