oneThird static method

double oneThird(
  1. BuildContext context
)

Defines a width of 33.333333% of the screen size

Implementation

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