Sheet Drag Indicator Visibility
Sets the visibility of the drag indicator on top of a sheet.
Platform Compatibility
iOS 16.0+ iPadOS 16.0+ macOS 113.0+ watchOS 9.0+ tvOS 16.0+ visionOS 1.0+
Tags
SwiftUI Code
@State var showSheet = true
var body: some View {
Text("Foo")
.sheet(isPresented: $showSheet) {
sheetContent
.presentationDragIndicator(.visible)
}
}Found an issue or have a suggestion?
Created: January 31, 2026Updated: January 31, 2026