Skip to content

Instantly share code, notes, and snippets.

View realsoc's full-sized avatar

Hugo D realsoc

View GitHub Profile
@realsoc
realsoc / TheZebraSpacer.kt
Created November 20, 2023 21:20
Implementation of a Zebra Spacer on Android using Kotlin + Compose
private val backgroundColor = Color(0xFF593072)
private val primaryColor = Color(0xFFFFFF00)
@Composable
fun TheZebraSpacer(
color: Color,
modifier: Modifier = Modifier,
lineSpace: Dp = 10.dp,
strokeWidth: Dp = 3.dp
) {