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
I am using this plugin to add events in my Calender App
its working fine for most of the mobile but for some devices (oneplus Android 14 )
nothing happening
can you tell me the reason why this behavior
I am facing the same issue. It works fine on Samsung devices.
It doesn't work on Xiaomi phones, pocophones and onePlus.
The function returns false when calling to create the event
I am using this plugin to add events in my Calender App
its working fine for most of the mobile but for some devices (oneplus Android 14 )
nothing happening
can you tell me the reason why this behavior
Add2Calendar.addEvent2Cal(buildEvent(i))
Event buildEvent(CalendarEventList list) {
return Event(
title: list.summary ?? '',
description: list.description ?? "",
startDate: DateTime.parse(list.start.toString().contains('dateTime')
? list.start['dateTime'].toString()
: list.start['date'].toString().substring(0, 10))
.toLocal(),
endDate: DateTime.parse(list.end.toString().contains('dateTime')
? list.end['dateTime'].toString()
: list.end['date'].toString().substring(0, 10))
.toLocal(),
);
}
The text was updated successfully, but these errors were encountered: