getWidth method

double getWidth(
  1. double size
)

仅支持纵屏。 returns the size after adaptation according to the screen width.(unit dp or pt) 返回根据屏幕宽适配后尺寸(单位 dp or pt) size 单位 dp or pt

Implementation

double getWidth(double size) {
  return _screenWidth == 0.0 ? size : (size * _screenWidth / _designW);
}