syncfusion / flutter-widgets

Syncfusion Flutter widgets libraries include high quality UI widgets and file-format packages to help you create rich, high-quality applications for iOS, Android, and web from a single code base.
1.44k stars 672 forks source link

End repeat bug #1804

Closed samih93 closed 4 days ago

samih93 commented 1 month ago

for example if i set endrepeat to 20240421T120000Z => that mean 21-04 not included , and i don't want to add 1 day in backend , to avoiding add and substract days in view image

LokeshPalani commented 1 month ago

Hi @samih93,

We have checked the reported issue and tried to replicate it in the SfCalendar with version 25.1.40 by setting the recurrenceRule to UNTIL=20240421T120000Z in the Appointment. However, we were unable to reproduce it on our end. Please check the attached sample, and if you are still experiencing the issue, we request that you replicate it in the attached sample and provide us with more details regarding the specific scenario in which you are encountering this issue. This will help us to assist you more effectively. We have shared code snippet and screenshot for your reference below.

Code Snippet:

appointments.add(
      Appointment(
        startTime: DateTime(2024, 04, 18, 04),
        endTime: DateTime(2024, 04, 18, 08),
        subject: 'Meeting',
        color: Colors.blue,
        recurrenceRule: 'FREQ=DAILY;INTERVAL=1;UNTIL=20240421T120000Z',
      ),
    );

Screenshot:

image

Regards, Lokesh P.

chart_580884.zip