Aleksander Woźniak
Aleksander Woźniak
Hey, thanks for submitting this. Multi date range feature is a big one, and there are some additional aspects to consider (for example: how to handle range overlap, how to...
Linking to #670
That's correct, `firstDay` and `lastDay` were originally intended to be static properties, as I believe that covers most of the use cases. I did however make a quick push -...
Try using [markerBuilder](https://pub.dev/documentation/table_calendar/latest/table_calendar/CalendarBuilders/markerBuilder.html) for this.
Try using `daysOfWeekHeight: 16 * MediaQuery.of(context).textScaleFactor` - this should fix the cropping.
Using `availableGestures: AvailableGestures.none` will disable the internal gestures. You can then add `GestureDetector` as a parent widget to catch gestures.
Try this: Once you detect the upward scrolling of a silver list, update `calendarFormat` variable to `CalendarFormat.week` and rebuild the `TableCalendar` widget. Same for downward scrolling, but use `CalendarFormat.month`.
Duplicate of #713. Check out https://github.com/aleksanderwozniak/table_calendar/issues/713#issuecomment-1180699391 for a workaround
`onVisibleDaysChanged` has been removed a long time ago. I'd recommend checking out [setup guide](https://github.com/aleksanderwozniak/table_calendar?tab=readme-ov-file#basic-setup), [examples](https://github.com/aleksanderwozniak/table_calendar/tree/master/example/lib/pages) and maybe [migration guide](https://github.com/aleksanderwozniak/table_calendar/issues/153#issuecomment-772881560).
That's not supported currently, and to be honest I don't see much of a reason to add this. Do you have a use case for this that can be generalized?