gpt4 book ai didi

dart - 我如何在 TextSpan 中使用 'vertical-align: super'

转载 作者:行者123 更新时间:2023-12-03 02:53:12 32 4
gpt4 key购买 nike

我想在 TextSpan 上设置“vertical-align: super”。我想要这样的结果: enter image description here

最佳答案

另一个答案使用了 Unicode 上标字符,但并非所有字符都有上标版本。在这种情况下,您可以将 WidgetSpan 与 Transform.translate 一起使用。您必须调整 fontSize 和 y-offset 直到它适合您的布局。

RichText(
text: TextSpan(
children: [
TextSpan(text: 'Usage (m'),
WidgetSpan(
child: Transform.translate(
offset: const Offset(0.0, -7.0),
child: Text(
'3',
style: TextStyle(fontSize: 10),
),
),
),
TextSpan(text: ')'),
],
),
)

关于dart - 我如何在 TextSpan 中使用 'vertical-align: super',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55345513/

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