oneQuarter static method

double oneQuarter(
  1. BuildContext context
)

Defines a width of 25% of the screen size

Implementation

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