onAppointmentResizeStart property

AppointmentResizeStartCallback? onAppointmentResizeStart
final

Called whenever the appointment starts to resizing in SfCalendar.

The resizing appointment and resource details when the appointment starts to resize available in the AppointmentResizeStartDetails.

See also:


return Container(
     child: SfCalendar(
       view: CalendarView.week,
       onAppointmentResizeStart: (AppointmentResizeStartDetails details){
         dynamic appointment = details.appointment!;
         CalendarResource? resource = details.resource;
       },
     ),
   );
 }

Implementation

final AppointmentResizeStartCallback? onAppointmentResizeStart;