fullWidth static method

double fullWidth(
  1. BuildContext context
)

Implementation

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