allowAppointmentResize property

bool allowAppointmentResize
final

Allows to reschedule the appointment by resizing the appointment.

Defaults to false.

Note: The appointment resizing is not applicable for mobile platform.

This method must be implemented to get the data with business object type when drag and drop or appointment resizing enabled.

See also: • allowDragAndDrop, which allows to reschedule a appointment by drag and drop to different date time.


Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
        allowAppointmentResize: true,
     ),
   );
 }

Implementation

final bool allowAppointmentResize;