getCleanHeight static method

double getCleanHeight(
  1. BuildContext context
)

Implementation

static double getCleanHeight(BuildContext context) {
  return MediaQuery.of(context).size.height -
      kToolbarHeight -
      kBottomNavigationBarHeight;
}