Marko Novakovic
09/23/2021, 8:13 PMFontWeight
and FontSize
?Eric Boggs
09/23/2021, 10:33 PMEric Boggs
09/23/2021, 10:35 PMval fontSize by transition.animateInt(label = "header transition text size") { state ->
when(state) {
<http://ScrolledState.Top|ScrolledState.Top> -> 32
ScrolledState.Scrolled -> 20
}
}
Eric Boggs
09/23/2021, 10:35 PMText(
stringResource(id = R.string.some_string),
fontSize = fontSize.sp,
)
Eric Boggs
09/23/2021, 10:36 PMMarko Novakovic
09/23/2021, 11:12 PM