SwiftUI ActionSheet position on iPad

1.6k Views Asked by At

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"):

sample app screen

But in my current app, is even worse:

enter image description here

0

There are 0 best solutions below