Jonas Wanke

Results 66 comments of Jonas Wanke

Unfortunately, long press + drag on the background is not yet supported. You might, however, be able to implement something similar to Google Calendar: After the user taps on the...

Supporting recurring events in Timetable directly is out of scope. You can, however, use my package [rrule](https://pub.dev/packages/rrule) to calculate occurrences of recurring events in a given time frame using [`recurrenceRule.getAllInstances(…)`](https://pub.dev/documentation/rrule/latest/rrule/RecurrenceRule/getAllInstances.html),...

Yeah, that's probably necessary. #63 also describes the issue of having too many all-day events so that they even cause a layout overflow, but I haven't yet gotten the time...

I've added this as part of [v1.0.0-alpha.9](https://pub.dev/packages/timetable/versions/1.0.0-alpha.10/changelog#100-alpha9--2022-08-19). You can now specify [`multiDateEventHeaderStyle.maxEventRows`](https://pub.dev/documentation/timetable/1.0.0-alpha.9/timetable/MultiDateEventHeaderStyle/maxEventRows.html) (defaults to showing up to three rows plus one with overflow indicators) and [`multiDateTimetableStyle.maxHeaderFraction`](https://pub.dev/documentation/timetable/1.0.0-alpha.9/timetable/MultiDateTimetableStyle/maxHeaderFraction.html) (defaults to `0.5`). You...

The `DatePageView` that contains the `DateHeader` widgets internally stores the heights of its inner widgets in order to shrink-wrap to their heights. I'd guess that either the widgets temporarily report...

Migration to null-safety is currently blocked by the following (direct & transitive) dependencies not supporting null safety yet: - [ ] `black_hole_flutter`: JonasWanke/black_hole_flutter#1 - [ ] `dartx`: leisim/dartx#112 - [x]...

@IoanaAlexandru As `crypto` has published a null-safe version two days ago (unblocking `dartx`) and there's an open PR for `time_machine`, I'd rather wait for a few more days, hoping we'll...

Sorry for the delay and for not keeping this up-to-date. I've recently started the rewrite originally proposed in #17, and as part of this rewrite, also migrated to null-safety and...

The work continues, but, unfortunately, quite slowly due to time constraints. I've posted an update here: https://github.com/JonasWanke/timetable/issues/17#issuecomment-822645067. I'll try to get the API stable and release a new version very...

Yes, this is part of the large refactoring tracked in #17.