threeQuarters static method

double threeQuarters(
  1. BuildContext context
)

Defines a width of 75% of the screen size

Implementation

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