Added order history cards

This commit is contained in:
2024-05-03 13:58:46 +03:00
parent 26f822e83a
commit 5c3da0964a
4 changed files with 155 additions and 10 deletions

View File

@@ -32,9 +32,15 @@ class ProductCard extends StatelessWidget {
children: [
imagePath,
const SizedBox(height: 16),
Text(name, style: Theme.of(context).textTheme.titleLarge),
Text(
name,
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 8),
Text('\$$price', style: Theme.of(context).textTheme.titleSmall),
Text(
'\$$price',
style: Theme.of(context).textTheme.titleSmall,
),
],
),
),