diff --git a/lib/features/home/presentation/screen/home_screen.dart b/lib/features/home/presentation/screen/home_screen.dart index 796c38f..8e501bc 100644 --- a/lib/features/home/presentation/screen/home_screen.dart +++ b/lib/features/home/presentation/screen/home_screen.dart @@ -60,9 +60,12 @@ class _HomeScreenState extends State { Row( mainAxisAlignment: MainAxisAlignment.end, children: [ - Icon(Iconsax.notification_1), + Icon( + Iconsax.notification_copy, + color: primaryColor, + ), Gap(10), - Icon(Iconsax.message_2), + Icon(Iconsax.message_copy, color: primaryColor), ], ), ], @@ -75,15 +78,15 @@ class _HomeScreenState extends State { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ CardWithIcon( - icon: Icons.account_circle, - text: 'Users', - number: '245', + icon: Iconsax.trash, + text: 'Sampah', + number: '245 kg', onTap: () {}, ), CardWithIcon( - icon: Icons.shopping_cart, - text: 'Orders', - number: '178', + icon: Iconsax.timer, + text: 'Process', + number: '1', onTap: () {}, ), ],