twoSixths static method

double twoSixths(
  1. BuildContext context
)

Defines an height of 33.333333% of the screen size

Implementation

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