sevenTwelfths static method

double sevenTwelfths(
  1. BuildContext context
)

Defines a width of 58.333333% of the screen size

Implementation

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