Flutter Material UI FontWeight Enum

The thickness of the glyphs used to draw the text


FontWeight Constants

  • FontWeight.bold (w700): A commonly used font weight that is heavier than normal.

  • FontWeight.normal (w400): The default font weight.

  • FontWeight.w100: Thin, the least thick

  • FontWeight.w200: Extra-light

  • FontWeight.w300: Light

  • FontWeight.w500: Medium

  • FontWeight.w600: Semi-bold

  • FontWeight.w800: Extra-bold

  • FontWeight.w900: Black, the most thick

  • FontWeight.values: A list of all the font weights.


Reference