uiHeight method

double uiHeight(
  1. BuildContext context
)

Retrieves the total height of the specified context.

Implementation

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