NavigationView中的PresentationButton仅可使用一次

时间:2019-06-24 16:43:47

标签: ios swift swiftui

PresentationButton在关闭按钮后停止工作后仅打开一次视图。

将PresentationButton放在视图层次结构的任何其他位置都可以正常工作。

var body: some View {
            NavigationView {
                Text("Master")
                    .navigationBarItems(trailing: PresentationButton(destination: Text("Details"), label: {
                        Text("Show")
                    }))
            }
    }

从导航栏按钮触发模式视图应该是一种常见情况,例如使用表单添加新项目。是有原因导致它无法正常工作还是错误?

0 个答案:

没有答案