oneSixth static method

double oneSixth(
  1. BuildContext context
)

Defines a width of 16.666667% of the screen size

Implementation

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