HI, I am passing appointmentsDataSource which has multiple appointments to SfCalendar, and I want to block one of the appointments, so I'm using special regions for it, but its widget is coming behind the appointments.
SfCalendar(
showNavigationArrow: model.isWebFullView,
controller: calendarController,
showDatePickerButton: true,
allowedViews: _allowedViews,
specialRegions: regions,
blackoutDatesTextStyle: mediumTextStyle,
timeRegionBuilder: _getSpecialRegionWidget,
timeSlotViewSettings: const TimeSlotViewSettings(
minimumAppointmentDuration: Duration(minutes: 30)),
dataSource: dataSource,
onTap: calendarTapCallback,
);
is there any other way to block any particular timing of a day(ex: today 8.00 - 8.30 pm)?