Skip to main content

Flutter Font Weight and Values

 



In Flutter, the FontWeight enumeration defines the weight values for fonts, with the following predefined constants:

  • FontWeight.w100 - Thin (100 weight)
  • FontWeight.w200 - Extra-light (200 weight)
  • FontWeight.w300 - Light (300 weight)
  • FontWeight.w400 - Regular (400 weight)
  • FontWeight.w500 - Medium (500 weight)
  • FontWeight.w600 - Semi-bold (600 weight)
  • FontWeight.w700 - Bold (700 weight)
  • FontWeight.w800 - Extra-bold (800 weight)
  • FontWeight.w900 - Black (900 weight)


Comments