Luis Daivid
Colton Idle
@Composable private fun DashedLine() { Canvas(modifier = Modifier.fillMaxWidth()) { drawLine( color = Color(0xff212121), start = Offset(0f, 0f), end = Offset(size.width - 1, 0f), strokeWidth = 6f, pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 10f), 0f), ) } }
A modern programming language that makes developers happier.