我希望文本以2行为限制进行垂直调整,其余为...但maxLines不起作用
How it looksHow I want it to look
这是我的代码:
Container(
margin: const EdgeInsets.symmetric(vertical: 20.0),
height: 150.0,
child: ListView(
// This next line does the trick.
scrollDirection: Axis.horizontal,
children: <Widget>[
Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
child: Column(children: [
Row(
children: [
Stack(
children: [
ClipRRect(
borderRadius:
BorderRadius.circular(8.0),
child: Image.network(
videos[1].thumbnailUrl,
height: 80,
width: 150,
fit: BoxFit.fill,
),
),
],
),
],
)
]),
),
Flexible(
child: Text(
videos[1].title,
maxLines: 2,
overflow: TextOverflow.ellipsis,
)),
],
),
如何修复此错误
3条答案
按热度按时间ckocjqey1#
您的列没有水平限制,可以无限扩展,您必须定义宽度来限制文本,我建议您将整个列 Package 在
SizedBox
中,然后调整图像大小以始终适合该大小,然后maxLines
将工作。z31licg02#
试试这个你只需要把容器宽度溢出文本
agxfikkp3#
如果你使用柔性,文本将适合一行。改变柔性到扩展然后最大行和溢出将工作。