|
|
@@ -424,9 +424,15 @@ class _OrderCardContainerState extends State < OrderCardContainer > with SingleT
|
|
|
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
|
- return Card(
|
|
|
- color: Colors.white,
|
|
|
- elevation: 3.0,
|
|
|
+ return Container(
|
|
|
+ margin: EdgeInsets.all(4),
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ color: Colors.white,
|
|
|
+ borderRadius: BorderRadius.all(Radius.circular(8)),
|
|
|
+ boxShadow: [
|
|
|
+ BoxShadow(color: Color.fromRGBO(217, 226, 233, 1),offset: Offset(0, 4),blurRadius: 3.0),
|
|
|
+ ]
|
|
|
+ ),
|
|
|
child: Container(
|
|
|
padding: EdgeInsets.fromLTRB(ScreenUtil.getInstance().setWidth(30), ScreenUtil.getInstance().setWidth(30), ScreenUtil.getInstance().setWidth(30), 0),
|
|
|
child: Column(
|