twoTwelfths static method

double twoTwelfths(
  1. BuildContext context
)

Defines a width of 16.666667% of the screen size

Implementation

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