screenWidth property
double
get
screenWidth
Returns the current screen width, limited to a maximum of 500.
Implementation
double get screenWidth {
double width = MediaQuery.of(this).size.width;
return width;
}