Skip to content

Cal2Todo

Cal2Todo is a simple calendar and task manager for iOS. Protocol Launcher allows you to generate deep links to add events to Cal2Todo.

Usage

There are two ways to use this library:

  • On-Demand import from subpaths enables tree-shaking and keeps bundles small.
  • Full Import from the root package is convenient but includes all app modules.

Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.

Select Installation Method

On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.

Open App

On-Demand
ts
import { open } from 'protocol-launcher/cal2todo'

const url = open()

Add Event

On-Demand
ts
import { add } from 'protocol-launcher/cal2todo'

const url = add({
  title: 'Meeting',
  notes: 'Discuss project roadmap',
})

Add Event with Callback URLs

On-Demand
ts
import { add } from 'protocol-launcher/cal2todo'

const url = add({
  title: 'Meeting',
  xSuccess: 'myapp://ok',
  xSource: 'myapp',
  xError: 'myapp://cancel',
})