-
Notifications
You must be signed in to change notification settings - Fork 155
Open
Description
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(),
);
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels