sevenTwelfths static method

double sevenTwelfths(
  1. BuildContext context
)

Defines an height of 58.333333% of the screen size

Implementation

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