I am trying to use ionic calendar plugin in my project but I am getting
: Object(...) is not a function
whenever I try to show the calendar.
My html code is:
<div class="appoint-ser"><span (click)="opencal()">Select Appointment Date</span></div>
And my ts code is:
import { Calendar } from '@ionic-native/calendar/ngx';
constructor(
private calendar: Calendar,
) {
}
opencal(){
this.calendar.createCalendar('MyCalendar').then(
(msg) => { console.log(msg); },
(err) => { console.log(err); }
);
}