eightTwelfths static method

double eightTwelfths(
  1. BuildContext context
)

Defines an height of 66.666667% of the screen size

Implementation

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