gpt4 book ai didi

flutter - Flutter 代码中的文本溢出不起作用

转载 作者:行者123 更新时间:2023-12-03 04:14:38 73 4
gpt4 key购买 nike

我试图在 Flutter 应用程序中省略文本,但我无法设置它。

我设计的 View 如下

Positioned(
bottom: 20,
left: 10,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
snapshot.data.results[index].title,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.start,
style: TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.w600,
color: Colors.white,
),
),
Text(
snapshot.data.results[index].release_date,
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.w400,
color: Colors.white,
letterSpacing: 1.2),
),
],
))

Screen Shot Ellipsis

最佳答案

你应该用 Flexible 包裹你的文字或 Expanded像下面这样的小部件:

    Flexible(child:Text("Text goes here"),

欲了解更多信息,请试用 this关联

关于flutter - Flutter 代码中的文本溢出不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60705741/

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