From c6ee3c453f324afb7d37344deaec564daf5d4100 Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Thu, 12 Feb 2026 13:23:12 +0300 Subject: [PATCH] contact us bottom sheet icons changed --- lib/presentation/contact_us/contact_us.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/presentation/contact_us/contact_us.dart b/lib/presentation/contact_us/contact_us.dart index 2bcbc6c..fd0a439 100644 --- a/lib/presentation/contact_us/contact_us.dart +++ b/lib/presentation/contact_us/contact_us.dart @@ -34,7 +34,7 @@ class ContactUs extends StatelessWidget { return Column( children: [ checkInOptionCard( - AppAssets.checkin_location_icon, + AppAssets.location, LocaleKeys.findUs.tr(), LocaleKeys.viewNearestHMGLocations.tr(), ).onPress(() { @@ -50,7 +50,7 @@ class ContactUs extends StatelessWidget { }), SizedBox(height: 16.h), checkInOptionCard( - AppAssets.checkin_location_icon, + AppAssets.feedbackFill, LocaleKeys.feedback.tr(), LocaleKeys.provideFeedbackOnServices.tr(), ).onPress(() { @@ -67,7 +67,7 @@ class ContactUs extends StatelessWidget { }), SizedBox(height: 16.h), checkInOptionCard( - AppAssets.checkin_location_icon, + AppAssets.ask_doctor_icon, LocaleKeys.liveChat.tr(), LocaleKeys.liveChatWithHMG.tr(), ).onPress(() { @@ -95,7 +95,7 @@ class ContactUs extends StatelessWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - Utils.buildSvgWithAssets(icon: icon, width: 40.h, height: 40.h, fit: BoxFit.fill), + Utils.buildSvgWithAssets(icon: icon, width: 24.h, height: 24.h, fit: BoxFit.fill, iconColor: AppColors.textColor), SizedBox(height: 16.h), Row( mainAxisAlignment: MainAxisAlignment.spaceBetween,