cellEndPadding property

double cellEndPadding
final

Adds padding at the right end of a cell to interact when the calendar cells have appointments.

defaults to '-1'.

Note: This is not applicable for month agenda and schedule view appointments.

See also:

 Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.day,
       cellEndPadding: 5,
     ),
   );
 }

Implementation

final double cellEndPadding;