Closed ljcleyba closed 5 years ago
In Kotlin:
view.isAnimating = false
Please, check the example app for implementation details.
This line, for example, is responsible for starting and stopping animation when clicking on the button.
buttonToggleProgress.setOnClickListener {
avatarView.isAnimating = !avatarView.isAnimating
}
How do i hide the animation once it's done loading?