kizitonwose / Calendar

A highly customizable calendar view and compose library for Android.
MIT License
4.5k stars 492 forks source link

How to scroll just one month #488

Closed DanteAndroid closed 10 months ago

DanteAndroid commented 10 months ago

Library information:

Question:

So weird there isn't such a method

kizitonwose commented 10 months ago

This method is intentionally not included, you can do it yourself:

Previous Month:

calendarView.findFirstVisibleMonth()?.let {
    calendarView.smoothScrollToMonth(it.yearMonth.previousMonth)
}

Next Month:

calendarView.findFirstVisibleMonth()?.let {
    calendarView.smoothScrollToMonth(it.yearMonth.nextMonth)
}