@nearform/react-native-calendar-manager
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

@nearform/react-native-calendar-manager

Note This is a fork of @shoutem/react-native-calendar-manager, with latest patches applied and with new features that will come later.

A calendar manager for React Native. Exposes methods which can be used to interact with Android or iOS device's native calendar app.

Supported React Native platforms

  • Android
  • iOS

Plugin installation

Run npm install --save @nearform/react-native-calendar-manager

Linking

We support only React Native 0.76+ and autolinking is supported by default for this module.

Permissions

On iOS, you need to manually add the following permissions to your Info.plist:

iOS < 17

<key>NSCalendarsUsageDescription</key>
<string>This app requires access to the calendar</string>

iOS >= 17

<key>NSCalendarsWriteOnlyAccessUsageDescription</key>
<string>This app requires access to the calendar and reminders</string>

On Android, you need to manually add the following to your AndroidManifest.xml

<uses-permission android:name="android.permission.READ_CALENDAR" />

Example

import CalendarManager from '@nearform/react-native-calendar-manager';

const inTenMinutes = Date.now() + 1000 * 60 * 10;
const inTwentyMinutes = Date.now() + 1000 * 60 * 10 * 2;
CalendarManager.addEvent({
  name: 'Coffee',
  location: 'Heinzelova 33',
  startTime: inTenMinutes,
  endTime: inTwentyMinutes,
})

banner

Readme

Keywords

none

Package Sidebar

Install

npm i @nearform/react-native-calendar-manager

Homepage

nearform.com

Weekly Downloads

102

Version

0.1.3

License

MIT

Unpacked Size

27.6 kB

Total Files

18

Last publish

Collaborators

  • simoneb
  • lucalanziani
  • eamonn.frisby
  • donal.moynihan
  • ilteoood