I’m calling the apple sheet api however within the present implementation i get the padding across the sheet as its the ios26 design however i dont need it. how can we take away this
Required Implementation

present Implementation
.sheet(merchandise: $coordinator.presentingSheet) { sheet in
DynamicSheet(animation: .snappy(length: 0.10,extraBounce: 0)){
coordinator
.construct(sheet)
}
}
import SwiftUI
struct DynamicSheet<Content material: View>: View {
var animation: Animation
@ViewBuilder var content material: Content material
@State personal var sheetHeight: CGFloat = .zero
var physique: some View {
content material
.onPreferenceChange(HeightPreferenceKey.self) { peak in
guard peak > 0 else { return }
withAnimation(animation) {
sheetHeight = peak
}
}
.presentationDetents(
sheetHeight == .zero ? [.medium] : [.height(sheetHeight)]
)
.presentationDragIndicator(.seen)
}
}

