is there a way to animate `FontWeight` and `FontSi...
# compose
m
is there a way to animate
FontWeight
and
FontSize
?
e
Take a look at @ExperimentalAnimationApi
Copy code
val fontSize by transition.animateInt(label = "header transition text size") { state ->
    when(state) {
        <http://ScrolledState.Top|ScrolledState.Top> -> 32
        ScrolledState.Scrolled -> 20
    }
}
✔️ 1
Copy code
Text(
    stringResource(id = R.string.some_string),
    fontSize = fontSize.sp,
)
Something like that
m
thank you, I will try
1