commonMain.ovh.plrapps.mapcompose.ui.paths.model.PatternItem.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapcompose-mp-desktop Show documentation
Show all versions of mapcompose-mp-desktop Show documentation
A Compose Multiplatform library to display tiled maps, with support for markers, paths, and rotation
The newest version!
package ovh.plrapps.mapcompose.ui.paths.model
import androidx.compose.ui.unit.Dp
sealed interface PatternItem {
data class Dash(val length: Dp): PatternItem
data object Dot: PatternItem
data class Gap(val length: Dp): PatternItem
}