screenHeight property
double
get
screenHeight
The Logical height of the screen
Implementation
double get screenHeight {
final media = MediaQuery.of(context!);
return media.size.height -
media.padding.top -
kToolbarHeight -
kBottomNavigationBarHeight;
}