A Jetpack Compose library for rendering expandable calendar component
Expandable Compose Calendar
Integrate calendar with your Jetpack Compose project.
Introduction
A calendar with a week view that can be expanded to a month view
Setup
- Configure jitpack
- Add the dependency
dependencies {
.....
implementation 'com.github.mateusz800:Expandable-Compose-Calendar:ce5075e1d4'
.....
}
Usage
Add the CalendarView
composable to your code:
CalendarView(onDayClick = {
....
})