I have this basic .sheet
in SwiftUI
. Is it possible to make it draggable from the top
instead from the bottom
?
struct MySheet: View {
@State private var show = true
var body: some View {
VStack {
}
.sheet(isPresented: $show) {
Text("Sheet")
.presentationDetents([.medium, .large])
}
}
}