ToolbarItem 内的按钮无法关闭 sheet

Buttons inside ToolbarItem cannot dismiss sheet

在 Xcode 12 Beta 6 中,关闭 sheet 在 ToolbarItem 内的按钮操作中不起作用。

我的 sheet 视图如下所示:

NavigationView {
    Form {
        Section {
            TextField("Name", text: $name)
        }
    }
    .navigationTitle("New Thing")
    .toolbar {
        ToolbarItem(placement: .cancellationAction) {
            Button(action: {
                self.presentation.wrappedValue.dismiss()
            }, label: {
                Text("Cancel")
            })
        }
        ToolbarItem(placement: .confirmationAction) {
            Button(action: {
                do {
                    // some saving logic
                    try managedObjectContext.save()
                    self.presentation.wrappedValue.dismiss()
                } catch {
                    print("didn't save due to \(error.localizedDescription)")
                }
            }, label: {
                Text("Save")
            })
        }
    }
}

编辑:这是我构建 sheet

的方式
var body: some View {
        List {
            ForEach(results) { result in
                HStack {
                    NavigationLink(destination: SingleResultView(result: result)) {
                        SingleResultRowView(result: result)
                    }
                }
            }
            .onDelete(perform: deleteResult)
        }
        .navigationTitle("All Results")
        .toolbar {
            ToolbarItem(placement: .primaryAction) {
                Button(action: {
                    self.isNewResultSheetPresented.toggle()
                }, label: {
                    Image(systemName: "plus.circle.fill")
                        .resizable()
                        .frame(width: 30, height: 30, alignment: .center)
                })
                .sheet(isPresented: $isNewResultSheetPresented) {
                    NewResultView()
                    // ^ this contains the code above
                        .environment(\.managedObjectContext, self.managedObjectContext)
                }
            }
        }
    }

首次出现 sheet 时,会立即出现控制台日志:

2020-09-13 20:52:02.333679-0700 MyApp[2710:89263] 
[Presentation] Attempt to present <_TtGC7SwiftUI22SheetHostingControllerVS_7AnyView_: 0x1027b7890> on 
<_TtGC7SwiftUI19UIHostingControllerGVS_15ModifiedContentVS_7AnyViewVS_12RootModifier__: 0x10270d620> 
(from <_TtGC7SwiftUIP104f39bd428DestinationHostingControllerVS_7AnyView_: 0x103605930>) 
which is already presenting <_TtGC7SwiftUI22SheetHostingControllerVS_7AnyView_: 0x103606d60>.

我只能向下滑动才能关闭 sheet。

作为参考,我回到了我使用 NavigationBarItems 的旧提交并且它运行良好。但据我了解,在这种情况下我应该使用 ToolbarItem。

有人知道为什么旧的 self.presentation.wrappedValue.dismiss() 在这里不起作用或者为什么 sheet 出现两次吗?

将 sheet 移出工具栏,如

var body: some View {
    List {
        ForEach(results) { result in
            HStack {
                NavigationLink(destination: SingleResultView(result: result)) {
                    SingleResultRowView(result: result)
                }
            }
        }
        .onDelete(perform: deleteResult)
    }
    .navigationTitle("All Results")
    .sheet(isPresented: $isNewResultSheetPresented) {     // << here !!
        NewResultView()
        // ^ this contains the code above
            .environment(\.managedObjectContext, self.managedObjectContext)
    }
    .toolbar {
        ToolbarItem(placement: .primaryAction) {
            Button(action: {
                self.isNewResultSheetPresented.toggle()
            }, label: {
                Image(systemName: "plus.circle.fill")
                    .resizable()
                    .frame(width: 30, height: 30, alignment: .center)
            })
        }
    }
}