gpt4 book ai didi

flutter - 无法将参数类型 'BoxShadow'分配给参数类型 'List'

转载 作者:行者123 更新时间:2023-12-03 03:15:52 33 4
gpt4 key购买 nike

我试图在 flutter 中建立一个自定义列表项。当我尝试将框半径分配给列表项时,我遇到以下语法错误:

**The argument type 'BoxShadow' can't be assigned to the parameter type 'List<BoxShadow>'.**

似乎我无法为列表分配阴影。我是flutter的新手,有没有一种方法可以向AnimatedList()的列表项中添加自定义框阴影。我提供了以下代码:
Widget _buildItem(UserModel user, [int index]) {
return Container(
padding: EdgeInsets.all(8.0),
margin: EdgeInsets.symmetric(horizontal: 10.0, vertical: 6.0),
decoration: BoxDecoration(
color: Colors.grey[50],
borderRadius: BorderRadius.all(Radius.circular(5.0)),
boxShadow: BoxShadow(
blurRadius: 5.0
)
),
child: Row(
children: <Widget>[
InkWell(
child: CircleAvatar(
radius: 30.0,
backgroundImage: NetworkImage(user.photo, scale: 64.0),
),
onLongPress: index != null ? () => deleteUser(index) : null,
)
],
),
);

}

最佳答案

由于boxShadow必须包含列表[],

您的解决方法是

...
boxShadow: [
BoxShadow(
color: Colors.amber.shade100,
blurRadius: 15.0,
// has the effect of softening the shadow
// spreadRadius: 2.0,
// has the effect of extending the shadow
offset: Offset(
1.0, // horizontal, move right 10
5.0, // vertical, move down 10
),
)
],

关于flutter - 无法将参数类型 'BoxShadow'分配给参数类型 'List<BoxShadow>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59126655/

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