fiveTwelfths static method

double fiveTwelfths(
  1. BuildContext context
)

Defines an height of 41.666667% of the screen size

Implementation

static double fiveTwelfths(BuildContext context) {
  return (MediaQuery.of(context).size.height * 5) / 12;
}