threeQuarters static method

double threeQuarters(
  1. BuildContext context
)

Defines an height of 75% of the screen size

Implementation

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