Font Weight 對應


#Font Weight

Font Weight 是代表文字粗細,在開發時 UI 給的 Font Weight 通常是語義化名稱,例如 Normal 或是 Bold。

Flutter 提供的 FontWeight class 唯二有語義化的剛好就是最常用的 FontWeight.normalFontWeight.bold,其餘的需要查詢對應表才能知道是哪個數值。

數值 名稱
100 Thin (Hairline)
200 Extra Light (Ultra Light)
300 Light
400 Normal (Regular)
500 Medium
600 Semi Bold (Demi Bold)
700 Bold
800 Extra Bold (Ultra Bold)
900 Black (Heavy)

Flutter 也貼心的在註解裡寫上對應名稱了,但我還是習慣查表。


參考:
https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight