``` struct ElasticEaseInEaseOutView: View { @State private var isActive = false var body: some View { VStack(alignment: isActive ? .trailing : .leading) { Color.red .frame(width: 100.0, height: 100.0) Color.black .frame(maxWidth: .infinity) } } } ``` Current: <img width="1206" height="2622" alt="Image" src="https://github.com/user-attachments/assets/0aa38bd4-265e-46dd-b6dd-ae7cd9cb59b9" /> Expected: <img width="1206" height="2622" alt="Image" src="https://github.com/user-attachments/assets/e131a6a1-e0a7-4e70-8f1e-ce27927661db" />