EphemerisCalendar

@Composable
fun EphemerisCalendar(    pageSource: CalendarPageSource,     calendarState: EphemerisCalendarState,     modifier: Modifier = Modifier,     contentPadding: PaddingValues = PaddingValues(),     dayContent: @Composable BoxScope.(CalendarDay) -> Unit)

EphemerisCalendar displays a calendar Composable that takes configuration from calendarState.

Parameters

calendarState

The EphemerisCalendarState used to control the calendar. See rememberCalendarState for more information.

modifier

The Modifier to be applied to the calendar Composable.

contentPadding

The PaddingValues to apply to the calendar Composable. Content will not be clipped to the padding when using this.

dayContent

A Composable that takes a CalendarDay and renders a date cell on the calendar.

Sources

Link copied to clipboard