英文:
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
),
),
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论