|
|
@ -181,13 +181,10 @@ class _AllOrdersState extends State<AllOrders> {
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
// Date heading
|
|
|
|
// Date heading
|
|
|
|
Padding(
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
|
|
padding: const EdgeInsets.all(0),
|
|
|
|
child: Text(
|
|
|
|
child: Text(
|
|
|
|
date,
|
|
|
|
date,
|
|
|
|
style: const TextStyle(
|
|
|
|
style:fontTextStyle(14, Color(0XFF343637), FontWeight.w600),
|
|
|
|
fontSize: 15,
|
|
|
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
@ -283,7 +280,8 @@ class OrderCard extends StatelessWidget {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final statusColor = _getStatusColor();
|
|
|
|
final statusColor = _getStatusColor();
|
|
|
|
|
|
|
|
|
|
|
|
return Container(
|
|
|
|
return Padding(padding: EdgeInsets.fromLTRB(0, 8, 0, 0),
|
|
|
|
|
|
|
|
child: Container(
|
|
|
|
margin: const EdgeInsets.only(bottom: 12),
|
|
|
|
margin: const EdgeInsets.only(bottom: 12),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.white,
|
|
|
|
color: Colors.white,
|
|
|
@ -398,6 +396,6 @@ class OrderCard extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
),);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|