Any calendar plugin for Ionic 2? (Solved)

Sure!!

I followed the steps dictated by the user clementinsarant in this thread:

Then I went backing on the official documentation to modify it to taste:
https://fullcalendar.io/

I also made use of Jquery to change some things, for example, to change the default style of the buttons and to use an own image:

ionViewDidLoad() {
    this.changeDefaultButtons();
}

changeDefaultButtons(): void {
    let nextButtonImg: string = '<img src="img/ui-next-arrow100.png" width="35"/>';
    let prevButtonImg: string = '<img src="img/ui-back-arrow100.png" width="35"/>';

    setTimeout(() => {
        $(".fc-next-button").empty();
        $(".fc-prev-button").empty();

        $(".fc-next-button").append(nextButtonImg);
        $(".fc-prev-button").append(prevButtonImg);
    }, 100);
}