Is it possible to do a visual transform without triggering a recomposition? E.g. say I want to use
Box(Modifier.offset(x=x, y=y)) { Content() }
but update x and y very frequently, while the contents of the box never changes. Right now I see the content get recomposed often, any way to avoid that? Is that in "future optimization" territory?