tenTwelfths static method

double tenTwelfths(
  1. BuildContext context
)

Defines a width of 83.333333% of the screen size

Implementation

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