getScreenHeight static method

double getScreenHeight(
  1. BuildContext context
)

Get the screen height

Implementation

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