Fixed
Status Update
Comments
ri...@google.com <ri...@google.com>
ri...@google.com <ri...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-main
commit ea43694acde6fdd6382638990cb85c7f24807d9a
Author: Rebecca Franks <riggaroo@google.com>
Date: Mon Jul 04 15:54:11 2022
Add atFraction infix function for defining Animation keyframes.
Defines them at a fraction of the overall specified duration instead of needing to adjust each variable everytime you update overall duration.
b/232059455
Test: Added tests
Relnote: Added atFraction function for defining keyframes at a fraction instead of at a specific duration.
Change-Id: I20c7687134349bcd9a07a18bd4523b24b7f121d6
M compose/animation/animation-core/api/public_plus_experimental_current.txt
M compose/animation/animation-core/api/restricted_current.txt
M compose/animation/animation-core/src/test/java/androidx/compose/animation/core/KeyframeAnimationTest.kt
M compose/animation/animation-core/api/current.txt
M compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/AnimationSpec.kt
https://android-review.googlesource.com/2145239
Branch: androidx-main
commit ea43694acde6fdd6382638990cb85c7f24807d9a
Author: Rebecca Franks <riggaroo@google.com>
Date: Mon Jul 04 15:54:11 2022
Add atFraction infix function for defining Animation keyframes.
Defines them at a fraction of the overall specified duration instead of needing to adjust each variable everytime you update overall duration.
Test: Added tests
Relnote: Added atFraction function for defining keyframes at a fraction instead of at a specific duration.
Change-Id: I20c7687134349bcd9a07a18bd4523b24b7f121d6
M compose/animation/animation-core/api/public_plus_experimental_current.txt
M compose/animation/animation-core/api/restricted_current.txt
M compose/animation/animation-core/src/test/java/androidx/compose/animation/core/KeyframeAnimationTest.kt
M compose/animation/animation-core/api/current.txt
M compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/AnimationSpec.kt
Description
Jetpack Compose version: 1.2.0 Jetpack Compose component used: Animation
Currently the keyframes() spec API only supports setting a keyframe at a millis point, this means if you change your duration of the whole animation, you will need to change all the millis checkpoints again.
Would it be possible to add another method for keyframes that lets you work in percentages? This would also conform more to the keyframes spec of CSS.
Example of such function that works with range: