挑战是:如何在新的 expo API 中设置通知的开始日期。在旧的 API(今天已弃用)中是可行的,但我在新文档中看不到解决方案
例如:从用户给定的日期(例如 1 月 12 日)开始,每隔 2 天设置一次通知。
我经历了这些类型
export type SchedulableNotificationTriggerInput =
| DateTriggerInput
| TimeIntervalTriggerInput
| DailyTriggerInput
| WeeklyTriggerInput
| CalendarTriggerInput;
但到目前为止还没有成功。