elevenTwelfths static method

double elevenTwelfths(
  1. BuildContext context
)

Defines a width of 91.666667% of the screen size

Implementation

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