onAppointmentResizeUpdate property

AppointmentResizeUpdateCallback? onAppointmentResizeUpdate
final

Called whenever the appointment resizing in SfCalendar.

The resizing appointment, position, time and resource details when the appointment resizing available in the AppointmentResizeUpdateDetails.

See also:


return Container(
     child: SfCalendar(
       view: CalendarView.week,
       onAppointmentResizeUpdate: (AppointmentResizeUpdateDetails
                                                              details){
         dynamic appointment = details.appointment!;
         CalendarResource? resource = details.resource;
         DateTime time = details.resizingTime!;
         Offset position = details.resizingOffset!;
       },
     ),
   );
 }

Implementation

final AppointmentResizeUpdateCallback? onAppointmentResizeUpdate;