safeHeight property
double
get
safeHeight
Get safe area height (excluding status bar, notch, bottom bar).
Implementation
double get safeHeight {
final padding = MediaQuery.paddingOf(this);
return screenHeight - padding.top - padding.bottom;
}