commonMain.com.kizitonwose.calendar.compose.CalendarInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-multiplatform Show documentation
Show all versions of compose-multiplatform Show documentation
A highly customizable calendar library for Compose Multiplatform, backed by LazyRow/LazyColumn.
package com.kizitonwose.calendar.compose
import androidx.compose.runtime.Immutable
import com.kizitonwose.calendar.core.OutDateStyle
import kotlinx.datetime.DayOfWeek
@Immutable
internal data class CalendarInfo(
val indexCount: Int,
private val firstDayOfWeek: DayOfWeek? = null,
private val outDateStyle: OutDateStyle? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy