eightTwelfths static method

double eightTwelfths(
  1. BuildContext context
)

Defines a width of 66.666667% of the screen size

Implementation

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