gpt4 book ai didi

flutter - 图标旁边的Flutter Text不想正确应用TextOverflow.ellipsis

转载 作者:行者123 更新时间:2023-12-03 04:18:47 33 4
gpt4 key购买 nike

我需要一行带有图标的文本,并且如果该行太长,则应以省略号(...)结束。
Breaking to the right
这是我的代码:

  Flexible _buildAddress() {
return Flexible(
child: Row(
mainAxisSize: MainAxisSize.max,
children: [
Icon(Icons.location_on, size: 20, color: Colors.grey,),
SizedBox(width: 5.0,),
Text(
'Lorem ipsum long very long line of text',
overflow: TextOverflow.ellipsis,
style: TextStyle(
color: Colors.grey,
fontSize: 16.0,
),
),
],
),
);
}
}
详细信息:如果我只有文字,省略号可以正常工作。

最佳答案

您应该用Text小部件包装Flexible小部件:
我以您的代码为例添加了一个演示:

           return Row(
mainAxisSize: MainAxisSize.max,
children: [
Icon(
Icons.location_on,
size: 20,
color: Colors.grey,
),
SizedBox(
width: 5.0,
),
Flexible( // new line
child: Text(
'Lorem ipsum long very long line of text ddss',
overflow: TextOverflow.ellipsis,
style: TextStyle(
color: Colors.grey,
fontSize: 16.0,
),
),
),
],
),
结果:
result

关于flutter - 图标旁边的Flutter Text不想正确应用TextOverflow.ellipsis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63816936/

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