fourTwelfths static method

double fourTwelfths(
  1. BuildContext context
)

Defines an height of 33.333333% of the screen size

Implementation

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