tenTwelfths static method

double tenTwelfths(
  1. BuildContext context
)

Defines an height of 83.333333% of the screen size

Implementation

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