gpt4 book ai didi

flutter - 让表情符号在文本中变大?

转载 作者:IT王子 更新时间:2023-10-29 06:53:55 37 4
gpt4 key购买 nike

知道如何在 Text() 小部件中仅增大表情符号的字体大小吗?

问题在于 Text() 小部件会自动解析表情符号。当然,我可以增加整体文本大小,但我希望文本保持相同的字体大小。

最佳答案

您可以使用小部件 RichText

RichText(
text: TextSpan(
text: 'hello',
children: <TextSpan>[
TextSpan(text: '🙂', style: TextStyle(fontSize: 30))
]
),
),

关于flutter - 让表情符号在文本中变大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54618485/

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