我面临着这个问题:
但我想要这样的文字
我正在开发一个Flutter应用程序,我试图在SliverList小部件中显示一个长文本。我想将溢出的文本显示为点,以便用户知道还有更多的文本要阅读。我已经尝试使用设置了maxLines和overflow属性的Text小部件,但它似乎在SliverList中不起作用。文本仍然显示,没有任何截断或点。谁能帮我弄清楚如何在Flutter的SliverList小部件中将溢出文本显示为点?
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
return Container(
padding: EdgeInsets.symmetric(horizontal: screenWidth*0.05, vertical: screenHeight*0.01),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
CircleAvatar(
backgroundImage: NetworkImage("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcScuQGyYbgV9HFyiunO9mF6_lnB6MYwcx6t3w&usqp=CAU"),
radius: screenWidth*0.08,
),
SizedBox(width: screenWidth*0.05,),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Adam John",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 18.0,
),
),
SizedBox(height: 5.0),
Container(
padding: const EdgeInsets.all(1),
child: Text(
"hello! my name is adam john and i'm your new tariner",
maxLines: 1,
overflow: TextOverflow.fade,
style: TextStyle(
color: AppColors().darKShadowColor,
fontSize: 16.0,
),
),
),
],
),
Text(
"10:30pm",
style: TextStyle(
color: AppColors().darKShadowColor,
fontSize: 16.0,
),
),
],
),
);
},
childCount: 3,
),
),
5条答案
按热度按时间pcrecxhr1#
您的文本位于行内,因此它具有无限宽度。
将Text Package 在
Expanded
中,并将溢出设置为:vcudknz32#
我正在尝试解决您的问题:
pw136qt23#
像这样更新代码
yrwegjxp4#
只需将文本小部件中的overflow属性设置为
这应该做的工作,所以这是如何您的容器将看起来像
thtygnil5#