Hey, using the latest device_calendar, I'm trying to set the url param on Event with a URL directing to my custom deeplink, but it's not saved in calendar, I have no URL there. So I look into the plugin's code and I see this:
|
data['eventURL'] = url?.data?.contentText; |
Why would you accept only data: URIs? Should that be fixed and toString() any Uris? Do you accept PR for that?
Hey, using the latest
device_calendar, I'm trying to set theurlparam onEventwith a URL directing to my custom deeplink, but it's not saved in calendar, I have no URL there. So I look into the plugin's code and I see this:device_calendar/lib/src/models/event.dart
Line 246 in 6a9733c
Why would you accept only
data:URIs? Should that be fixed andtoString()anyUris? Do you accept PR for that?