oneThird static method

double oneThird(
  1. BuildContext context
)

Defines an height of 33.333333% of the screen size

Implementation

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