Backporting new SwiftUI views

Will the new SwiftUI views added to support the duo (like ArrangementView) be backported to older iOS versions or will we have to provide different implementations if we still want to support iOS 26?

Like with any new API, you should use standard availability checking best practices so that you use the new APIs on iOS versions where it is available, and you choose how to best handle the specific situation when the API is not available at runtime.

Backporting new SwiftUI views
 
 
Q