我正在尝试像文档所述那样实现PresentationButton,但无法正常工作。
这是针对Xcode beta 2
PresentationButton(destination: LoginScreen(),
label: Text("Login"))
我收到此错误“无法将'文本'类型的值转换为预期的参数类型'()-> _'“
答案 0 :(得分:3)
应该是这样:
PresentationButton(destination: LoginScreen(),
label: { Text("Login") })
或者这个:
PresentationButton(destination: LoginScreen()) { Text("Login") }
相反。