const constructure

This commit is contained in:
Efril
2026-03-01 20:02:12 +07:00
parent 5058f99fe0
commit e625bd3d2a
142 changed files with 817 additions and 760 deletions
@@ -84,7 +84,7 @@ class OrderCard extends StatelessWidget {
const SizedBox(height: 12),
Row(
children: [
CircleAvatar(
const CircleAvatar(
radius: 22,
backgroundColor: AppColor.primary,
child: Icon(Icons.person, color: Colors.white),
@@ -107,7 +107,7 @@ class OrderCard extends StatelessWidget {
const SizedBox(height: 4),
Row(
children: [
Icon(
const Icon(
Icons.table_bar,
size: 16,
color: AppColor.textSecondary,
@@ -145,7 +145,7 @@ class OrderCard extends StatelessWidget {
),
Text(
(order.createdAt).toFormattedDateTime(),
style: TextStyle(color: AppColor.black),
style: const TextStyle(color: AppColor.black),
),
],
),
@@ -182,7 +182,7 @@ class OrderCard extends StatelessWidget {
),
child: Text(
(order.status).toUpperCase(),
style: TextStyle(
style: const TextStyle(
color: AppColor.success,
fontWeight: FontWeight.w600,
fontSize: 12,
@@ -199,7 +199,7 @@ class OrderCard extends StatelessWidget {
),
child: Text(
(order.status).toUpperCase(),
style: TextStyle(
style: const TextStyle(
color: AppColor.textSecondary,
fontWeight: FontWeight.w600,
fontSize: 12,