I have an overlay transition that uses matchedgeometry effect, as shown in this video: Matched Geometry Effect with same sized text
I want to enlarge the transitioned text after the animation, but it seems that the text frame isn't being scaled in time, causing the text to be shortened in transition. Matched Geometry Effect with different sized text
Is there a way to overcome this?
The original text:
Text(info.name)
.font(.system(size: 22, weight: .bold))
.matchedGeometryEffect(id: info.name, in: namespace)
The transitioned text:
Text(currentCard.name)
.font(.title.bold())
.matchedGeometryEffect(id: currentCard.name, in: namespace)
Thanks



