prolificinteractive / material-calendarview

A Material design back port of Android's CalendarView
https://prolificinteractive.github.io/material-calendarview/
MIT License
5.91k stars 1.32k forks source link

Unable to use getCalendar() of CalendarDay in 2.0.0 library version #1087

Open asthagarg2428 opened 3 years ago

asthagarg2428 commented 3 years ago

I'm trying to show different text color to the current date using DayVewDecorator but I'm unable to use getCalendar() , no such method is there in CalendarDay class. Also, I'm trying to disable weekends by taking referenence in sample: final DayOfWeek weekDay = day.getDate().getDayOfWeek(); return weekDay == DayOfWeek.SATURDAY || weekDay == DayOfWeek.SUNDAY;

getDayOfWeek() is not found again. Are there any changes in the latest library version?