React Native Alarm Clock
npm install react-native-alarm-clocksh
npm install react-native-alarm-clock
`
Usage
Simply call createAlarm with and ISO8601 date string and a label.
Android does not support setting a specific day, it will get the hour & minute out of the passed date and use that.
iOS does supports using a specific date.
`js
import AlarmClock from "react-native-alarm-clock";
// ...
// Create an alarm at 1:55PM for next day, with the label 'My Custom Alarm'
let date = new Date();
date.setDate(date.getDate() + 1);
date.setHours(13, 55);
AlarmClock.createAlarm(date.toISOString(), 'My Custom Alarm');
``