I am having trouble displaying calendar events properly in a vertical Gallery control.
I ran the following code to get the Calendar ID and then use the ID to retrieve the events.
Set(varUserCalendarId,
LookUp(Office365Outlook.CalendarGetTablesV2().value,
name=Office365Users.MyProfile().Mail).id
);
Set(varCalendarEvents,Office365Outlook.GetEventsCalendarViewV3(
varUserCalendarId,
Text(Date(2022,11,01),DateTimeFormat.UTC),
Text(Date(2023,01,30),DateTimeFormat.UTC)
).value);
However, the events displayed in the Gallery showed only the event date. The timing and event title were not displayed.

I tried another piece of code:
Office365Outlook.CalendarGetItems(varUserCalendarId).value
But this time, only the title was shown and the rest is gibberish:

How can calendar event dates, timings and titles be retrieved and displayed properly?
The documents and blogs I referenced are:
Solved: Display Outlook Calendar Events in PowerApps - Power Platform Community (microsoft.com)
Power Apps Guide - Outlook - How to add, edit, delete, and list Outlook calendar events - Power Apps Guide - Blog