oneTwelfth static method

double oneTwelfth(
  1. BuildContext context
)

Defines a width of 8.333333% of the screen size

Implementation

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