gpt4 book ai didi

flutter - 如何在 Flutter 中设置自定义 FontWeight 值

转载 作者:行者123 更新时间:2023-12-04 09:12:04 26 4
gpt4 key购买 nike

在 Flutter 中设置字体粗细时,我通常使用预设值,例如 FontWeight.normalFontWeight.w500。在我目前的情况下,我需要设置自定义 FontWeight。如何将字体粗细设置为 350 (Book)?也许有一个我不知道的构造函数。

它看起来像这样:

Text(
'some text',
style: TextStyle(
fontWeight: FontWeight.w300, //but instead of 300 it's 350
)
)

谢谢!

最佳答案

Text(
'some text',
style: TextStyle(
fontWeight: FontWeight.lerp(FontWeight.w300, FontWeight.w400, 0.5), //but instead of 300 it's 350
)
)

关于flutter - 如何在 Flutter 中设置自定义 FontWeight 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63332563/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com