Home

Awesome

An easy calendar for your Ionic 2 App (also works with Ionic 3)

Demo:

Live Demo

How to use:

Place the following in the desired page:

<ion-calendar
        (onChange)="onChange($event)"
        [events]="myEvents"
        (onEventClicked)="eventClicked($event)"
        [useSwipe]="true"
        [todayText]="Today"
        [showEventsList]="true"
        [disablePastDates]="false"
        [weekDaysToDisable]="[0,6]"
        [daysToDisable]="[10,11,12]"
        [inputDate]="myDate">
</ion-calendar>

Read about the options below.

Installation process:

Options: