Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created January 25, 2020 19:26
Show Gist options
  • Save zsoltk/83c94a592b6da2ad954825536ffd4d90 to your computer and use it in GitHub Desktop.
Save zsoltk/83c94a592b6da2ad954825536ffd4d90 to your computer and use it in GitHub Desktop.
@Composable
fun Pokeball() {
Container(width = 200.dp, height = 200.dp) {
Opacity(opacity = 0.75f) {
DrawImage(
image = +imageResource(R.drawable.pokeball),
tint = +colorResource(R.color.poke_red)
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment