Multiple calendars visualize

Hello everyone,

I’m developing an app that integrates with Google Calendar. Currently, I’m able to view a single calendar, but I want to implement a feature to view multiple calendars simultaneously, merging their events together while being able to distinguish which event belongs to which calendar.

Based on my research, the Google Calendar API doesn’t provide an event ID that links back to the specific calendar, which complicates determining the source calendar for each event.

I’ve also attempted to use a repeating group for each selected calendar, fetching all events into a list (custom state) for each calendar. This approach worked; however, it keeps the events separate.

I’ve been searching for a solution for about two weeks now.