screenHeightFraction static method

double screenHeightFraction(
  1. BuildContext context,
  2. double fraction
)

Implementation

static double screenHeightFraction(BuildContext context, double fraction) {
  return MediaQuery.of(context).size.height * fraction;
}