fiveTwelfths static method

double fiveTwelfths(
  1. BuildContext context
)

Defines a width of 41.666667% of the screen size

Implementation

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