This code would produce an animation that crossfades the values whenever I change self.myTextString:
// In some View's body method
Text(self.myTextString)
.transition(.opacity)
.animation(.easeInOut(duration: 0.6), value: self.myTextString)
What I'd like it to do is fade out the old value completely THEN begin fading in the newValue.
It didn't seem clear / obvious how to do this. Do I need to make a custom Transition? Any examples anywhere of somebody doing such a thing? (Let the outgoing do something and complete, then the incoming can start animating?)

