getScreenWidth static method

double getScreenWidth(
  1. BuildContext context
)

getScreenWidth Get screen width in pixel

Implementation

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