-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need Help Removing days which is not in current month #141
Comments
Hi, @vichuer you can provide cellBuilder property in cellBuilder: (date, events, isToday, isInMonth) {
if(isInMonth) return SizedBox.shrink();
return FilledCell(
date: date,
shouldHighlight: isToday,
backgroundColor: Constants.offWhite,
events: events,
// onTileTap: onEventTap,
// dateStringBuilder: dateStringBuilder,
);
}, |
Let me know if this helps. |
I was also looking for this, but for me the problem is that week with non_month days still have cell space remained. Calendar doesn't dynamically change size if month weeks are 5 instead of 6. |
We would also like to be able to reduce the number of weeks shown (from 6 to 5 or 4). |
Closing this issue as it got merged in #362. |
I need help with this amazing package. Is there a way to remove the days which is not in current month?
The text was updated successfully, but these errors were encountered: