0

我想在我的文本样式中使用自定义字体粗细,而不是在给定 100、200 ----- 900 字体粗细的情况下使用自定义字体粗细,例如 Fontweight.w550 或(550 as int)。

试图实现这一目标,但没有成功

  fontWeight: FontWeight.lerp(FontWeight.w500, FontWeight.w600, 0.5)

感谢您的帮助...

4

1 回答 1

0

FontWeight是一个 const 参数,它是:[w100, w200, w300, w400, w500, w600, w700, w800, w900]

您可以FontWeight.w500fontStyle:FontStyle.bold,

让我知道它是否有效。

于 2022-03-05T13:22:21.180 回答