screenHeight property

double screenHeight

The Logical height of the screen

Implementation

static double get screenHeight {
  final media = MediaQuery.of(context!);
  return media.size.height -
      media.padding.top -
      kToolbarHeight -
      kBottomNavigationBarHeight;
}