2

i am using flutter local notification library.

what is the difference between:

matchDateTimeComponents: DateTimeComponents.dayOfWeekAndTime

and

 matchDateTimeComponents: DateTimeComponents.time

1 Answers1

2
matchDateTimeComponents: DateTimeComponents.dayOfWeekAndTime

This shows the notification and repeat every week (same day of week and time).

matchDateTimeComponents: DateTimeComponents.time

This shows the notification and repeat every day at the same time.

Sherry
  • 36
  • 3
  • What do I need to use if I would like to see the notification for e.g. each monday, tuesday, wednesday but not thursday, friday, saturday and sunday? Any ideas? First notification is shown, but the week after it is not. – novas1r1 Nov 28 '22 at 17:29