oneQuarter static method

double oneQuarter(
  1. BuildContext context
)

Defines an height of 25% of the screen size

Implementation

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