screenHeight static method

double screenHeight(
  1. BuildContext context
)

Returns the height of the current screen.

Implementation

static double screenHeight(BuildContext context) =>
    MediaQuery.of(context).size.height;