fourTwelfths static method

double fourTwelfths(
  1. BuildContext context
)

Defines a width of 33.333333% of the screen size

Implementation

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