threeFifths static method

double threeFifths(
  1. BuildContext context
)

Defines a width of 60% of the screen size

Implementation

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