gpt4 book ai didi

android - 如何在 flutter 中使用自定义字体样式?

转载 作者:IT老高 更新时间:2023-10-28 12:42:43 27 4
gpt4 key购买 nike

我已经在我的 pubspec.yaml 中设置了以下代码:

fonts:
- family: Roboto
fonts:
- asset: fonts/Roboto-Light.ttf
- asset: fonts/Roboto-Thin.ttf
- asset: fonts/Roboto-Italic.ttf

但我不知道在我的小部件中使用来自 Roboto 的样式“Roboto-Light.ttf”。我试过这个:

new ListTile(
title: new Text(
"Home",
style: new TextStyle(
fontFamily: "Roboto",
fontSize: 60.0,
),
),
),

我不知道如何访问“Roboto-Light.ttf”样式。如何做到这一点?

谢谢!

最佳答案

Roboto 是 Material 风格的默认字体,不需要在 pubspec.yaml 中添加。

要使用不同的变体,请设置 TextStyle

Text(
'Home',
style: TextStyle(
fontWeight: FontWeight.w300, // light
fontStyle: FontStyle.italic, // italic
),
);

我认为瘦是 FontWeight.w200

相应样式的FontWeightsGoogleFonts 中特定字体的styles 部分中提到。网站。

关于android - 如何在 flutter 中使用自定义字体样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52132135/

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