作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我工作到登录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
// 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()
}
}
@EnvironmentObject
像这样,您可以稍后对其进行编辑(退出),您的应用程序将自动返回登录屏幕。
关于ios - 如何在 SwiftUI 中全屏显示 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56557979/
我是一名优秀的程序员,十分优秀!