elevenTwelfths static method

double elevenTwelfths(
  1. BuildContext context
)

Defines an height of 91.666667% of the screen size

Implementation

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