gpt4 book ai didi

listview - Flutter - 容器 BoxShadow 在 ListView 中滚动时消失

转载 作者:IT老高 更新时间:2023-10-28 12:34:05 25 4
gpt4 key购买 nike

这是我的容器的样子:

new Container(
width: 500.0,
height: 250.0,
padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0),
decoration: new BoxDecoration(
color: const Color(0xFF66BB6A),
boxShadow: [new BoxShadow(
color: Colors.black,
blurRadius: 20.0,
),]
),
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
new Container(
padding: new EdgeInsets.fromLTRB(0.0, 0.0, 0.0, 10.0),
child: new Text("Testtext", style: new TextStyle(fontSize: 30.0, fontFamily: "Barrio", color: new Color.fromARGB(255, 230, 230, 230))),
),
]
),
),

它与其他一些容器位于 ListView 内。一旦我开始滚动 ListView,阴影就会消失。加载 View 时,它显示正确。

对这个问题有什么想法吗?

谢谢

最佳答案

此其他答案适用于需要继续使用 Container 的人:

Container(
decoration: BoxDecoration(
shape: BoxShape.circle, // BoxShape.circle or BoxShape.retangle
//color: const Color(0xFF66BB6A),
boxShadow: [BoxShadow(
color: Colors.grey,
blurRadius: 5.0,
),]
),
child: ...
),

关于listview - Flutter - 容器 BoxShadow 在 ListView 中滚动时消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43820773/

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