Skip to content

Instantly share code, notes, and snippets.

View RuzickaOnd's full-sized avatar

Ondřej Růžička RuzickaOnd

View GitHub Profile
@kafri8889
kafri8889 / DashedDivider.kt
Created June 12, 2022 02:49
Dashed divider in Jetpack Compose
@Preview
@Composable
private fun DashedDividerPreview() {
DashedDivider(
color = Color.Black,
thickness = 1.dp,
modifier = Modifier
.fillMaxWidth()
.padding(16.dp)
)