diff --git a/lib/config/localized_values.dart b/lib/config/localized_values.dart index b96383c9..dfdd758b 100644 --- a/lib/config/localized_values.dart +++ b/lib/config/localized_values.dart @@ -683,7 +683,7 @@ const Map> localizedValues = { "Book": {"en": "Book", "ar": "احجز"}, "AppointmentLabel": {"en": "Appointment", "ar": "موعد"}, "BloodType": {"en": "Blood Type", "ar": "فصيلة الدم"}, - "marital-status": {"en": "Marital status", "ar": "الحالة الإجتماعية"} + "marital-status": {"en": "Marital status", "ar": "الحالة الإجتماعية"}, "notifications": {"en": "Notifications", "ar": "إشعارات"}, "notificationDetails": {"en": "Notification Details", "ar": "تفاصيل الاشعار"}, diff --git a/lib/pages/BookAppointment/components/DocAvailableAppointments.dart b/lib/pages/BookAppointment/components/DocAvailableAppointments.dart index 85569473..2d857bc9 100644 --- a/lib/pages/BookAppointment/components/DocAvailableAppointments.dart +++ b/lib/pages/BookAppointment/components/DocAvailableAppointments.dart @@ -235,7 +235,7 @@ class _DocAvailableAppointmentsState extends State return children; }, ), - onDaySelected: (date, events) { + onDaySelected: (date, events,holidays) { _onDaySelected(date, events); _animationController.forward(from: 0.0); }, diff --git a/lib/pages/Covid-DriveThru/Covid-TimeSlots.dart b/lib/pages/Covid-DriveThru/Covid-TimeSlots.dart index 939198c3..8310528d 100644 --- a/lib/pages/Covid-DriveThru/Covid-TimeSlots.dart +++ b/lib/pages/Covid-DriveThru/Covid-TimeSlots.dart @@ -348,7 +348,7 @@ class _CovidTimeSlotsState extends State return children; }, ), - onDaySelected: (date, event) { + onDaySelected: (date, event,holidays) { _onDaySelected( date, event, diff --git a/lib/uitl/translations_delegate_base.dart b/lib/uitl/translations_delegate_base.dart index f4e318af..051823ad 100644 --- a/lib/uitl/translations_delegate_base.dart +++ b/lib/uitl/translations_delegate_base.dart @@ -738,7 +738,6 @@ class TranslationBase { localizedValues['loginToUseService'][locale.languageCode]; String get maritalStatus => localizedValues['marital-status'][locale.languageCode]; - String get loginToUseService => localizedValues['loginToUseService'][locale.languageCode]; String get notifications => localizedValues['notifications'][locale.languageCode]; String get notificationDetails => localizedValues['notificationDetails'][locale.languageCode]; }