Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created July 28, 2021 07:42
Show Gist options
  • Save zsoltk/c0d07714f99b1b688ccf4b74a29e7ece to your computer and use it in GitHub Desktop.
Save zsoltk/c0d07714f99b1b688ccf4b74a29e7ece to your computer and use it in GitHub Desktop.
@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