react-native-add-calendar-event
react-native-add-calendar-event copied to clipboard
Create, view or edit events in react native using the standard iOS / Android dialogs
Code: ``` { AddCalendarEvent.presentEventCreatingDialog({ location: "ABC Venue", title: "Event Reservation", startDate: new Date().toISOString(), endDate: new Date( (Date.now + 60 * 60 * 2) * 1000 ).toISOString() }) .then(e => console.log(e))...
I noticed on Android if a user has multiple calendar apps it would ask the user which calendar to choose from. This is not the case for IOS.
Added a simple recurrence parameter 'weekly', 'daily', etc which populates the repeat element of the calendar. Just following along from https://github.com/wmcmahan/react-native-calendar-events
Hi guys, I wanna ask, does it support Outlook calendar? I don't see the example of outlook in readme file. Thank you.
How can we hide dialogue and on button click open presentEventCreatingDialog of perticular calendar? Google calendar or Outlook calendar.
npm i react-native-add-calendar-event npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! Found: [email protected] npm ERR! node_modules/react-native-svg npm ERR! react-native-svg@"^12.1.1" from the root...
How can i mulitple event ? this only support single event
I added the possibility to set an alarm since there was none by default. It works for iOS, because in Android, it use the native calendar, and users already got...
Hi, I wanna ask about notes/description, is it possible to read notes/description in html tag? Thank you.