You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val localDate = LocalDate.now() // java.time
val calendar = GregorianCalendar.from(atStartOfDay(ZoneId.systemDefault()))
val calendarDay = CalendarDay(calendar)
calendarDays.add(event)
It is showing if it is added the following way:
val localDate = LocalDate.now() // java.time
val calendar = Calendar.getInstance().apply { time = Date.from(atStartOfDay().toInstant(ZoneOffset.UTC)) }
val calendarDay = CalendarDay(calendar)
calendarDays.add(event)
The text was updated successfully, but these errors were encountered:
Event added in the following way is not showing:
It is showing if it is added the following way:
The text was updated successfully, but these errors were encountered: