Is it possible to change font size in a `Text` wi...
# compose
l
Is it possible to change font size in a
Text
without recomposing?
a
Why avoiding recomposing?
j
when you change an input of your composable you will trigger recomposition.. can you elaborate on what you’re trying to achieve?
c
If it’s for animation purposes, you can change the scale on the graphicsLayer (Modifier.graphicsLayer) which will not recompose and just redraw. You would just have to do a tiny bit of math to figure out what to scale to/from.