从Xcode beta 2开始,如何调用PresentationButton的新方法?

时间:2019-06-18 17:05:32

标签: swiftui

我正在尝试像文档所述那样实现PresentationButton,但无法正常工作。

这是针对Xcode beta 2

PresentationButton(destination: LoginScreen(),
    label: Text("Login"))

我收到此错误“无法将'文本'类型的值转换为预期的参数类型'()-> _'“

1 个答案:

答案 0 :(得分:3)

应该是这样:

PresentationButton(destination: LoginScreen(),
    label: { Text("Login") })

或者这个:

PresentationButton(destination: LoginScreen()) { Text("Login") }

相反。