nineTwelfths static method

double nineTwelfths(
  1. BuildContext context
)

Defines a width of 75% of the screen size

Implementation

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