Created
July 28, 2021 07:42
-
-
Save zsoltk/c0d07714f99b1b688ccf4b74a29e7ece 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 Highlight( | |
modifier: Modifier | |
) { | |
Canvas(modifier) { | |
drawRect( | |
color = Color.Yellow, | |
size = size, | |
alpha = 0.15f | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment