getScreenHeight static method

double getScreenHeight(
  1. BuildContext context
)

getScreenHeight Get screen height (without status bar)

Implementation

static double getScreenHeight(BuildContext context) {
  return MediaQuery.of(context).size.height;
}