threeTwelfths static method

double threeTwelfths(
  1. BuildContext context
)

Defines a width of 25% of the screen size

Implementation

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