oneSixth static method

double oneSixth(
  1. BuildContext context
)

Defines an height of 16.666667% of the screen size

Implementation

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