screenPhysicalWidth property

double screenPhysicalWidth

The Physical width of the screen

Implementation

static double get screenPhysicalWidth {
  final media = MediaQuery.of(context!);
  return media.size.width * media.devicePixelRatio;
}