I remember reading something months ago about how animating text size in Compose is a bad idea, and I think it was more than just the layout could break to a new line. I also remember when Flutter was struggling with performance around animating font sizes, because each font size had to be rendered and cached (details could be wrong).
Does any sort of performance limitation like this exist in Compose, or is it safe to animate text size (instead of doing something more complicated like scale) for simple single-line text?