Reputation: 165
I am working on a react-native based mobile app using expo.
in the app the user can set schedules for medication reminders, for that I am using expo-notifications to show those reminders.
expo-notifications provides some functions to schedule notifications, but as I found in the docs it does not provide scheduling options that I need, like every Sunday at 09:00am, or every 2 days at 05:00pm, daily at 08:30pm, and so on...
How can I achieve such scheduling?
Upvotes: 2
Views: 863
Reputation: 471
expo-notifications
author here! 👋
It depends on your use case, but I would suggest either:
WeeklyTrigger
DailyTrigger
Upvotes: 2