Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Created February 17, 2020 10:26
Show Gist options
  • Save fluxtah/1fc6e96d936a16012df6b6a8444f9e75 to your computer and use it in GitHub Desktop.
Save fluxtah/1fc6e96d936a16012df6b6a8444f9e75 to your computer and use it in GitHub Desktop.
@Composable
private fun GuitarString(modifier: Modifier, thickness: Dp = 3.dp) {
Container(modifier = modifier, alignment = Alignment.CenterRight) {
ColoredRect(
modifier = modifier + Border(
RoundedCornerShape(1.dp),
1.dp,
Color.Black
) + LayoutHeight(thickness), brush = SolidColor(Color.LightGray)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment