threeTwelfths static method

double threeTwelfths(
  1. BuildContext context
)

Defines an height of 25% of the screen size

Implementation

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