Hello everyone,
I am new to Xamarin forms, I need to add to my app a functionality so that the user can schedule reminders.
For example: Send a notification every Monday and Friday at 5 pm.
I have tried to use Local notifications with this library https://github.com/shinyorg/shiny but I am not happy with the result,
the main problem is that if I plan a notification in 3 hours, and the phone is restarted before that time, the notification never arrives.
"await ScheduleLocalNotification(DateTimeOffset.UtcNow.AddMinutes(180));"
Also, handling the schedule with a simple delay doesn't help if you need to plan the same reminder for multiple weeks.
I was wondering if push notifications are needed to achieve this behaviour, or what is the best practice to achieve something like this in general.
Thank you