oneTwelfth static method

double oneTwelfth(
  1. BuildContext context
)

Defines an height of 8.333333% of the screen size

Implementation

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