fourSixths static method

double fourSixths(
  1. BuildContext context
)

Defines a width of 66.666667% of the screen size

Implementation

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