我无法在Flutter中显示 USDT 符号 ₮。

huangapple go评论80阅读模式
英文:

I can't show the tether (USDT) symbol, ₮, in Flutter

问题

Text("₮"),

我也尝试了 \u20AE:

Text("\u20AE"),

英文:

I want to show the tether symbol, ₮, inside Text. In iOS, it's correct, but I have a problem with Android. It just shows a rectangle.

Text("₮"),

I also tried \u20AE:

 Text("\u20AE"),

答案1

得分: 0

不是所有的字体系列都兼容 Tether 符号。您可以尝试使用 'Roboto',因为 Android 通常支持此符号。

Text(
  "\u20AE",
  style: TextStyle(
    fontFamily: 'Roboto', // 使用默认字体
  ),
),
英文:

Not all font family compatible with Tether symbol. You can try 'Roboto' for Android usually has support for this symbol.

Text(
  "\u20AE",
  style: TextStyle(
    fontFamily: 'Roboto', // Use the default font
  ),
),

huangapple
  • 本文由 发表于 2023年6月22日 16:22:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/76529895.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定