Closed wlmirand closed 4 months ago
Got this exception when using the most basic calendar inside my Composable: I am using this inside a Kotlin Multiplatform project
@OptIn(ExperimentalFoundationApi::class) @Composable @Preview fun TimesheetScreen() { val startDate = LocalDate.today() HorizontalCalendarView(startDate = startDate) { monthOffset -> CalendarView( config = rememberCalendarState( startDate = startDate, monthOffset = monthOffset ) ) } }
Got this exception when using the most basic calendar inside my Composable: I am using this inside a Kotlin Multiplatform project