Created
February 17, 2020 10:26
-
-
Save fluxtah/1fc6e96d936a16012df6b6a8444f9e75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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