-
Notifications
You must be signed in to change notification settings - Fork 563
Added ViewPropertyAnimator extensions #560
base: master
Are you sure you want to change the base?
Added ViewPropertyAnimator extensions #560
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me overall
@@ -0,0 +1,94 @@ | |||
package androidx.core.animation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing copyright header
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. I added the copyright header.
@@ -0,0 +1,73 @@ | |||
package androidx.core.animation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing copyright header
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. I added the copyright header.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the copyright header for ViewPropertyAnimator and ViewPropertyAnimatorTest files
Example:
progressView.animate()
.alpha(1)
.doOnEnd {
// code
}