npm install react-native-wtfssd-remind --save
- ios 添加
NSRemindersUsageDescription
和NSCalendarsUsageDescription
到info.plist
- android 添加
<uses-permission android:name="android.permission.READ_CALENDAR" /> <uses-permission android:name="android.permission.WRITE_CALENDAR" />
到AndroidManifest.xml
import Remind from 'react-native-wtfssd-remind';
Remind.addEvent({
title:"i am title",
location:"i am address",
startDate:new Date(),
endDate:new Date(),
URL:"https://github.com/WTFSSD/react-native-wtfssd-remind.git",
notes:"iam description",
allDay:true,
}).then((e)=>{
console.log('完成',e);
}).catch(e=>{
console.log('错误',e);
});