diff --git a/assets/images/svg/reminder_bell.svg b/assets/images/svg/reminder_bell.svg new file mode 100644 index 0000000..82be912 --- /dev/null +++ b/assets/images/svg/reminder_bell.svg @@ -0,0 +1,4 @@ + + + + diff --git a/ios/Runner/Runner.entitlements b/ios/Runner/Runner.entitlements new file mode 100644 index 0000000..319178a --- /dev/null +++ b/ios/Runner/Runner.entitlements @@ -0,0 +1,17 @@ + + + + + aps-environment + development + com.apple.developer.in-app-payments + + merchant.com.hmgwebservices + merchant.com.hmgwebservices.uat + + com.apple.developer.nfc.readersession.formats + + TAG + + + diff --git a/lib/core/app_assets.dart b/lib/core/app_assets.dart index edab028..76c643b 100644 --- a/lib/core/app_assets.dart +++ b/lib/core/app_assets.dart @@ -85,7 +85,7 @@ class AppAssets { static const String uae_dirham_symbol = '$svgBasePath/uae_dirham_symbol.svg'; static const String directions_icon = '$svgBasePath/directions_icon.svg'; static const String apple_pay_button = '$svgBasePath/pay_with_apple_pay.svg'; - static const String bell = '$svgBasePath/bell.svg'; + static const String reminder_bell = '$svgBasePath/reminder_bell.svg'; //bottom navigation// diff --git a/lib/core/utils/calendar_utils.dart b/lib/core/utils/calendar_utils.dart index 00a5958..297ae2f 100644 --- a/lib/core/utils/calendar_utils.dart +++ b/lib/core/utils/calendar_utils.dart @@ -81,16 +81,16 @@ class CalendarUtils { Future _showReminderBottomSheet(BuildContext providedContext, DateTime dateTime, String doctorName, String eventId, String appoDateFormatted, String appoTimeFormatted, {required Function onSuccess, String? title, String? description, Function(int)? onMultiDateSuccess, bool? isMultiAllowed}) async { - showCommonBottomSheet( - providedContext, - child: Column(children: [ - - ],), - callBackFunc: () {}, - title: "", - isCloseButtonVisible: false, - isFullScreen: false, height: null, - ); + // showCommonBottomSheet( + // providedContext, + // child: Column(children: [ + // + // ],), + // callBackFunc: () {}, + // title: "", + // isCloseButtonVisible: false, + // isFullScreen: false, height: null, + // ); // return showDialog( // context: providedContext, diff --git a/lib/presentation/prescriptions/prescription_reminder_view.dart b/lib/presentation/prescriptions/prescription_reminder_view.dart index 69758df..8b7df0b 100644 --- a/lib/presentation/prescriptions/prescription_reminder_view.dart +++ b/lib/presentation/prescriptions/prescription_reminder_view.dart @@ -105,7 +105,7 @@ class _PrescriptionReminderViewState extends State { backgroundColor: AppColors.bgGreenColor, borderColor: AppColors.bgGreenColor, textColor: Colors.white, - icon: AppAssets.bell, + icon: AppAssets.reminder_bell, ), ), ],