Created
May 26, 2022 18:50
-
-
Save maiatoday/f4a4c8436b7d2af29c6d5d82b9657a62 to your computer and use it in GitHub Desktop.
heart
This file contains 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 | |
fun Heart(modifier: Modifier = Modifier, color: Color = Color.Red, size: Dp = 100.dp) { | |
Surface( | |
shape = HeartShape, | |
color = color, | |
modifier = modifier | |
.height(size) | |
.width(size) | |
) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment