getScaleW static method
仅支持纵屏。 returns the size after adaptation according to the screen width.(unit dp or pt) 返回根据屏幕宽适配后尺寸(单位 dp or pt) size 单位 dp or pt
Implementation
static double getScaleW(BuildContext context, double size) {
if (getScreenW(context) == 0.0) return size;
return size * getScreenW(context) / _designW;
}