getFontWeight method

FontWeight getFontWeight()

The font weight of the text

Implementation

FontWeight getFontWeight() {
  final weight = style?.fontWeight?.toInt();
  if (weight == null) return FontWeight.normal;

  // Mappa i pesi font di Figma ai FontWeight di Flutter
  return switch (weight) {
    100 => FontWeight.w100,
    200 => FontWeight.w200,
    300 => FontWeight.w300,
    400 => FontWeight.w400,
    500 => FontWeight.w500,
    600 => FontWeight.w600,
    700 => FontWeight.w700,
    800 => FontWeight.w800,
    900 => FontWeight.w900,
    _ => FontWeight.normal,
  };
}