MaikuB / flutter_local_notifications

A Flutter plugin for displaying local notifications on Android, iOS, macOS and Linux
2.47k stars 1.4k forks source link

Confusing doc for "weekly" notification. DateTimeComponents.dayOfWeekAndTime does not seem to work. #2304

Closed marrahi8 closed 7 months ago

marrahi8 commented 7 months ago

The doc says: "There is an optional matchDateTimeComponents parameter that can be used to schedule a notification to appear on a daily or weekly basis...". Just after that it provides an example of how to do a weekly notification using periodicallyShow(...)

The thing is, since matchDateTimeComponents is a parameter of the method "zonedSchedule(...)" and not of "periodicallyShow(...)", how does the whole "weekly" thing works?

So how to perform a weekly notification, let's say every Tuesday at 10:00am?

Thanks!

marrahi8 commented 7 months ago

zonedScheduled + matchDateTimeComponents: DateTimeComponents.dayOfWeekAndTime works like a charm. My apologies.