react-native-add-calendar-event icon indicating copy to clipboard operation
react-native-add-calendar-event copied to clipboard

Unable to add location (string) in android

Open owaisulwara opened this issue 3 years ago • 0 comments

Code:

<TouchableOpacity
onPress={() => {
  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))
    .catch(err => console.log(err));
}}>

owaisulwara avatar Dec 08 '21 14:12 owaisulwara