gpt4 book ai didi

ios - 如何在 SwiftUI 中全屏显示 View ?

转载 作者:行者123 更新时间:2023-12-01 10:21:00 26 4
gpt4 key购买 nike

我工作到登录view ,现在我要介绍 view登录后,但我不希望用户有可能返回登录view .在 UIkit我用了present() , 但似乎在 SwiftUI presentation(_ modal: Modal?) view不占用整个屏幕。 Navigation也不是一个选择。

谢谢!

最佳答案

I do not want the user to have the possibility to return to the login view



在这种情况下,您不应该远离登录 View ,而是完全替换它。

您可以通过有条件地构建登录 View 或“应用程序 View ”来做到这一点。

像这样的东西...
// create the full screen login view
struct LoginView: View {
// ...
}

//create the full screen app veiw
struct AppView: View {
// ...
}

// create the view that swaps between them
struct StartView: View {
@EnvironmentObject var isLoggedIn: Bool // you might not want to use this specifically.

var body: some View {
isLoggedIn ? AppView() : LoginView()
}
}

通过使用这样的模式,您不会呈现或离开登录 View ,而是完全替换它,因此它根本不再位于 View 层次结构中。

这可确保用户无法导航回登录屏幕。

同样...通过使用 @EnvironmentObject像这样,您可以稍后对其进行编辑(退出),您的应用程序将自动返回登录屏幕。

关于ios - 如何在 SwiftUI 中全屏显示 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56557979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com