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,