handleOnePixel static method

double handleOnePixel(
  1. double width
)

Implementation

static double handleOnePixel(double width) {
  if (!_enableScaleWH) return width;
  final physicalPixel = 1.0 / _mediaQuery.devicePixelRatio;
  return physicalPixel.clamp(0.5, 2.0);
}