flutter_calendar_view
flutter_calendar_view copied to clipboard
Remove all event from Calendar
Hello,
I want to remove all events (remove all events from the calendar), but I did not find any function or method to remove all events from the whole calendar.
I found only removeEvnet method.
Right now, I am using below approach to remove all events
for (var event in eventController.events) { eventController.remove(event); }
Kindly provide a better solution if one exists.
Thank you, Vivek Vithalani.
eventController.removeWhere((_) => true);
This worked well for me
Is there any update??
Closing this for now as a solution already exists.