When using SwiftUI's ActionSheet
inside a List
on iPad, it appears in a wrong position, especially if the style of the list is set to GroupedListStyle
.
With this code:
struct ContentView: View {
@State var presentAction: Bool = false
var body: some View {
NavigationView {
List {
Section {
Button(action: {
self.presentAction.toggle()
}) {
Text("Present")
}
.actionSheet(isPresented: $presentAction) {
ActionSheet(title: Text("This is an action sheet"), buttons: [
.destructive(Text("Destroy all"))
])
}
}
}.listStyle(GroupedListStyle())
}
.navigationViewStyle(StackNavigationViewStyle())
}
}
The result is as in the following screen (iPad Pro 10.5"):
But in my current app, is even worse: