Post

Replies

Boosts

Views

Activity

Reply to Sheet presentationDetents breaks after rapid open/dismiss cycles
Same here, one way to fix this temporarily is to set detent directly on presentationController within sheet's content .onAppear { guard let windows = UIApplication.shared.connectedScenes.first as? UIWindowScene else { return } if let controller = windows.windows.first?.rootViewController?.presentedViewController, let sheet = controller.presentationController as? UISheetPresentationController { sheet.detents = [.medium()] } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25