threeFifths static method

double threeFifths(
  1. BuildContext context
)

Defines an height of 60% of the screen size

Implementation

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