twoSixths static method

double twoSixths(
  1. BuildContext context
)

Defines a width of 33.333333% of the screen size

Implementation

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