update: change var text and icon

This commit is contained in:
pahmiudahgede 2025-05-17 17:16:17 +07:00
parent 3359304d7a
commit 7d3f129748
1 changed files with 11 additions and 8 deletions

View File

@ -60,9 +60,12 @@ class _HomeScreenState extends State<HomeScreen> {
Row( Row(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
children: [ children: [
Icon(Iconsax.notification_1), Icon(
Iconsax.notification_copy,
color: primaryColor,
),
Gap(10), Gap(10),
Icon(Iconsax.message_2), Icon(Iconsax.message_copy, color: primaryColor),
], ],
), ),
], ],
@ -75,15 +78,15 @@ class _HomeScreenState extends State<HomeScreen> {
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
CardWithIcon( CardWithIcon(
icon: Icons.account_circle, icon: Iconsax.trash,
text: 'Users', text: 'Sampah',
number: '245', number: '245 kg',
onTap: () {}, onTap: () {},
), ),
CardWithIcon( CardWithIcon(
icon: Icons.shopping_cart, icon: Iconsax.timer,
text: 'Orders', text: 'Process',
number: '178', number: '1',
onTap: () {}, onTap: () {},
), ),
], ],