gpt4 book ai didi

flutter - 将图像添加到 RichText 元素

转载 作者:IT王子 更新时间:2023-10-29 07:16:19 25 4
gpt4 key购买 nike

我正在努力实现以下目标:

enter image description here

为了实现这一点,我使用了 RichText。使用它我可以添加多个具有不同样式的文本。但我不知道如何将图像添加到此 TextSpan。可能还有其他一些因素。

最佳答案

您不需要第三方库来实现这一点。在最新的稳定版本中,Flutter 引入了 WidgetSpan。这类似于 TextSpan 但您可以使用任何小部件而不仅仅是文本。示例代码:

RichText(
text: TextSpan(
children: [
TextSpan(
text: "Click ",
),
WidgetSpan(
child: Icon(Icons.add, size: 14),
),
TextSpan(
text: " to add",
),
],
),
),

关于flutter - 将图像添加到 RichText 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57287059/

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