When a SwiftUI Picker menu in iOS 26 is opened or closed, it first transforms into a square before taking on its final shape. This prevents it from morphing fluidly from one form to another. #SwiftUI #iOSDev
@superpixel Try contentShape(.capsule)
@nicoreese I already tried that. 😔
@superpixel I did it with a Menu like this. Maybe try applying the contentShape and glassEffect to the label instead of the picker itself, like I did here.

@nicoreese The Label of the Picker is not used, but the two Labels inside the Picker. If I apply ‹.contentShape(.capsule)› and ‹.glassEffect› to the contents, the effects are not visible. It behaves wrong even if the contents are Text instead of Label.

Maybe I try to use Menu instead of a Picker then.