Vitalii Radchuk

Results 3 comments of Vitalii Radchuk

With version 0.0.4 it multiday events doesn't work (WeekView) Here is my code: ``` return CalendarEventData( color: AppColors.availabilityGreen.withOpacity(0.2), title: DateFormatter.formatTime(schedule.start).toLowerCase(), date: schedule.start, startTime: schedule.start, endTime: schedule.end, event: schedule, ); ```...

@PRBaraiya Yes, the endTime is less than startTime. But endTime is tomorrow. How can I set the event that starts, for example, 2022-04-05 14:00 and ends 2022-04-06 10:00? Is it...

@PRBaraiya I thought about EventAranger, but it's not suitable in my case. So, I decided to split up multi-day events into single ones. Thanks for help.