我找到了答案。如果要显示回调的其他视图,则应
@State var pushActive = false
2)当ViewModel通知登录成功时,将其设置
pushActive为
true
func handleSuccessfullLogin() { self.pushActive = true print("handleSuccessfullLogin") }
3)创建隐藏
Navigationlink并绑定到该状态
Navigationlink(destination: ProfileView(viewModel: ProfileViewModelImpl()), isActive: self.pushActive) { Text("") }.hidden()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)