Open nknr opened 5 months ago
I'm not quite sure what you're asking here. You want to remove the day of month number from the cells? If so, you'd have to create custom builders for all the different cell types. This setup for example eliminates all numbers from the calendar. (Not sure why you would wanna do that though)
CalendarBuilders(
defaultBuilder: (context, day, focusedDay) {
return SizedBox();
},
todayBuilder: (context, day, focusedDay) {
return SizedBox();
},
selectedBuilder: (context, day, focusedDay) {
return SizedBox();
},
disabledBuilder: (context, day, focusedDay) {
return SizedBox();
},
outsideBuilder: (context, day, focusedDay) {
return SizedBox();
},
);
Is your feature request related to a problem? Please describe. I am not able to remove default cell day value
Describe the solution you'd like