Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created January 26, 2020 17:47
Show Gist options
  • Save zsoltk/ff8d18fe794714fe65f3038fbbb8f5d4 to your computer and use it in GitHub Desktop.
Save zsoltk/ff8d18fe794714fe65f3038fbbb8f5d4 to your computer and use it in GitHub Desktop.
@Composable
private fun RotatingPokeBall() {
RotateIndefinitely(durationPerRotation = 4000) {
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