Thiago
03/26/2020, 5:22 PMSean McQuillan [G]
03/26/2020, 5:42 PMThiago
03/26/2020, 10:52 PMeaseInOut
). Unfortunaly, CubicBezierEasing doesn't have a easing field to keep going with chainned easing.
https://github.com/programadorthi/compose-weather-forecast/blob/02884a698153a7cd0b81df7472bee26ca2e92829/app/src/main/java/br/com/programadorthi/compose/composables/forecast_content.kt#L94
https://github.com/programadorthi/compose-weather-forecast/blob/02884a698153a7cd0b81df7472bee26ca2e92829/app/src/main/java/br/com/programadorthi/compose/helpers/animations.kt#L34Sean McQuillan [G]
03/26/2020, 11:05 PMDoris Liu
03/26/2020, 11:22 PMThiago
03/27/2020, 12:08 PMX(
easing = Y(
easing = Z(
easing ... and so on
)
)
)
// here is the flow when a invoke X with animation value
fx = X computation * fy(fraction)
fy = Y computation * fz(fraction)
fz = Z computation * fraction
Because each easing class have a typealias Easing field, we can create infinite easing combinations
I hope have answered your curiosity.