twoTwelfths static method

double twoTwelfths(
  1. BuildContext context
)

Defines an height of 16.666667% of the screen size

Implementation

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