Skip to content

Instantly share code, notes, and snippets.

View WoochanLee's full-sized avatar
💭
Interested in Clean Architecture

WoochanLee WoochanLee

💭
Interested in Clean Architecture
View GitHub Profile
@WoochanLee
WoochanLee / AnimationChain.kt
Last active May 23, 2022 13:32
Android Animation Chain
/**
* Created by WoochanLee on 2022. 05. 23
* https://gist.github.com/WoochanLee/934893722316a120f9955e4fd637dc4a
*/
class AnimationChain private constructor(builder: Builder) {
private val animation: Animation = builder.firstAnimation
private val targetView: View = builder.targetView
fun startAnimation() {