Search code examples
flutterdartflutter-local-notification

what is matchDateTimeComponents object in flutter local notification?


i am using flutter local notification library.

what is the difference between:

matchDateTimeComponents: DateTimeComponents.dayOfWeekAndTime

and

 matchDateTimeComponents: DateTimeComponents.time

Solution

  • 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.