This is an Android library to make a simple way to animate your views on Android with Rx.
USAGE
Add RxAnimation library under Rx3 with Gradle:
implementation 'com.mikhaellopez:rxanimation:2.0.0'
implementation 'com.mikhaellopez:rxanimation:1.0.0'
KOTLIN
- Animate your views and handle it in Completable. For example
alpha()
andresize()
:
view1.alpha(1f)
.andThen(view2.resize(100, 100))