nineTwelfths static method

double nineTwelfths(
  1. BuildContext context
)

Defines an height of 75% of the screen size

Implementation

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