full static method

double full(
  1. BuildContext context
)

Defines a width of 100% of the screen size

Implementation

static double full(BuildContext context) {
  return MediaQuery.of(context).size.width;
}