【发布时间】:2022-07-21 16:08:13
【问题描述】:
这是我的省略号文本部分的代码
Padding(
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
child: Row(
children: [
Flexible(
flex: 10,
child: Container(
padding: const EdgeInsets.only(right: 13.0),
child: const Text(
'\$ 900.000.000',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 18,
color: Colors.red,
fontWeight: FontWeight.bold,
),
),
),
),
const Flexible(
flex: 3,
child: Icon(
Icons.favorite_border_outlined,
),
),
],
),
),
我正在尝试创建一条显示价格的线,如下所示。
$ 2.000.00....
但结果是这样的
我已经尝试使用这个参考,但它仍然无法工作Flutter - Wrap text on overflow, like insert ellipsis or fade
我希望文本仍然与其他文本聚集在一起,而没有像 this was a long text loooooooooooooooooooooooooooooooooooooooong 这样的空间@
【问题讨论】:
标签: flutter dart text flutter-layout flutter-text