twoThirds static method

double twoThirds(
  1. BuildContext context
)

Defines an height of 66.666667% of the screen size

Implementation

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