我试图改变一个视图,而没有像你在 swift 中使用 segue 时那样。但我想出的唯一解决方案是使用导航栏 navigationBar 或弹出框。
struct view1: View {
var body: some View{
Button(action: {
// go to view2``
}) {
Text("press")
}
}
}
Run Code Online (Sandbox Code Playgroud)
struct view2: View {
var body: some View{
Text("yeay")
}
}
Run Code Online (Sandbox Code Playgroud) swiftui ×1