@ebarooni/capacitor-calendar
    Preparing search index...

    Interface CreateRemindersListOptions

    8.1.0

    interface CreateRemindersListOptions {
        color?:
            | "blue"
            | "brown"
            | "gray"
            | "green"
            | "indigo"
            | "orange"
            | "pink"
            | "purple"
            | "red"
            | "teal"
            | "yellow";
        commit?: boolean;
        sourceId?: string;
        title: string;
    }
    Index

    Properties

    color?:
        | "blue"
        | "brown"
        | "gray"
        | "green"
        | "indigo"
        | "orange"
        | "pink"
        | "purple"
        | "red"
        | "teal"
        | "yellow"

    The color of the list.

    'indigo'
    
    'blue'
    

    iOS

    8.1.0

    commit?: boolean

    Whether to save the list to the event store immediately. Pass false to batch multiple changes and commit them together using CapacitorCalendar.commit(), which is more efficient than committing each save individually.

    false
    
    true
    

    iOS

    8.1.0

    sourceId?: string

    The EKSource identifier (account) where the list should be created. If left undefined, iCloud will be used if available, otherwise falls back to local.

    'A1234567-ABCD-EFGH-IJKL-MNOPQRSTUVWX'
    

    iOS

    8.1.0

    title: string

    The title of the list.

    'Groceries'
    

    iOS

    8.1.0