pt_to_px_converter.dart 199 B

123456789
  1. class PtToPxConverter {
  2. //Json 中的PT单位转换为像素单位
  3. static double ptToPx(double? value) {
  4. if (value == null) {
  5. return 10.5 * 4 / 3;
  6. }
  7. return value * 4 / 3;
  8. }
  9. }