fixed issue api related

This commit is contained in:
2025-03-01 18:47:26 +05:30
parent 0904abf774
commit 5ed75e2aef
5 changed files with 27 additions and 28 deletions

View File

@@ -35,7 +35,7 @@ class _OrderDetailsScreenState extends State<OrderDetailsScreen> {
return Scaffold(
appBar: AppBar(title: Text('Order Details')),
body: Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(2.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@@ -151,7 +151,7 @@ class _OrderDetailsScreenState extends State<OrderDetailsScreen> {
SizedBox(width: 5),
AnimatedContainer(
duration: Duration(milliseconds: 500),
width: 20,
width: 15,
height: 3,
color: isCompleted ? Colors.green : Colors.grey,
),