getFontWeight static method

FontWeight getFontWeight(
  1. UFUFontWeight fontWeight
)

Return fontWeight of a text and default textSize is UFUFontFamily.regular

Implementation

static FontWeight getFontWeight(UFUFontWeight fontWeight) {
  switch (fontWeight) {
    case UFUFontWeight.regular:
      return FontWeight.w400;
    case UFUFontWeight.medium:
      return FontWeight.w500;
    case UFUFontWeight.semiBold:
      return FontWeight.w600;
    case UFUFontWeight.bold:
      return FontWeight.w700;
    }
}