fourSixths static method

double fourSixths(
  1. BuildContext context
)

Defines an height of 66.666667% of the screen size

Implementation

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