gpt4 book ai didi

Flutter - 调用自定义图标字形的正确方法是什么?

转载 作者:IT王子 更新时间:2023-10-29 06:50:14 25 4
gpt4 key购买 nike

我已经在 pubspec.yaml (icomoon.ttf) 中声明了自定义图标字体。

Flutter 的文档说要调用一个图标,使用...

const IconData(
this.codePoint, {
this.fontFamily,
});

我有一个带有填充的元素应该包含图标。

new Padding(
padding: new EdgeInsets.only(top: 2.0),

how to invoke the glyph here? Need to be able to specify font size and
color too.

),

我应该如何调用大小为 25 像素且色调为“myColor”的“icomoon.ttf”字形“e901”的示例是什么?

最佳答案

您需要在 Icon 小部件中使用 IconData 来显示它,例如:

new Icon(const IconData(0x41, fontFamily: 'Roboto'), size: 48.0, color: Colors.red);

所以在你的情况下它会是这样的:

new Icon(const IconData(0xe901, fontFamily: 'icomoon'), size: 25.0, color: myColor);

关于Flutter - 调用自定义图标字形的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46008279/

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