screenHeightWithoutSystemBars property

double get screenHeightWithoutSystemBars

Returns the screen height excluding top and bottom system paddings.

Helpful for layout calculations inside safe areas.

Implementation

double get screenHeightWithoutSystemBars =>
    MediaQuery.of(this).size.height -
    MediaQuery.of(this).padding.top -
    MediaQuery.of(this).padding.bottom;