gpt4 book ai didi

flutter - 在抖动 ListView 中右溢出了23个像素

转载 作者:行者123 更新时间:2023-12-03 03:24:53 25 4
gpt4 key购买 nike

enter image description here

我创建了一个列表 View ,但它显示像素错误覆盖

这是适合您的列表 View

return ListView.builder(

itemCount: titles.length,
itemBuilder: (context, index) {
return Card(
elevation: 50,
child: InkWell(


splashColor: Colors.green,
highlightColor: Colors.red,
child: Row(
children: <Widget>[


Container(


height: 100.0,
width:50.0,

decoration: BoxDecoration(
gradient:LinearGradientStyle.linearGradient(
orientation:LinearGradientStyle.ORIENTATION_HORIZONTAL,
gradientType: LinearGradientStyle.GRADIENT_TYPE_AMIN
)
),),

Container(
margin: EdgeInsets.all(10),
child: Text(
numbers[index],
)),


Container(
margin: EdgeInsets.all(10),
child: GradientText((titles[index]),
gradient:gradient,

style:TextStyle(fontSize:20.0,fontWeight:FontWeight.bold, ),
),
//Text(titles[index]),
)
],
),
onTap: () => onTaps[index](),
));
});



如果您需要更多代码,请注释 ...

而不是溢出错误,它应该位于列表的第二行。如果您有任何解决方案,请帮助我...。

最佳答案

ListView.builder(

itemCount: 1,
itemBuilder: (context, index) {
return Card(
elevation: 50,
child: InkWell(


splashColor: Colors.green,
highlightColor: Colors.red,
child: Row(
children: <Widget>[


Container(


height: 100.0,
width:50.0,

),

Container(
margin: EdgeInsets.all(10),
child: Text(
"numbers[index]",
)),


Flexible(
child: Container(
margin: EdgeInsets.all(10),
child: Text("GradientText"*30,

style:TextStyle(fontSize:20.0,fontWeight:FontWeight.bold, ),
),
//Text(titles[index]),
),
)
],
),
onTap: () {},
));
}),

使用灵活的小部件,例如父级,而该小部件已溢出

关于flutter - 在抖动 ListView 中右溢出了23个像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58747973/

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