gpt4 book ai didi

ios - 不同 View 之间的 SwiftUI 导航

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

我们如何在没有模态或导航 View (列表)方法的情况下在独立屏幕(没有返回选项)之间导航?

有没有办法做到这一点?

最佳答案

欢迎使用 Stackoverflow。是的,有办法做到这一点。

您可以获得的一个很好的引用是这篇 Medium 文章:
https://medium.com/swlh/customize-your-navigations-with-swiftui-173a72cd8a04
modalLink的实现实现起来并不复杂。

struct ContentView : View {
@State var isPresented = false

var body: some View {

VStack {
Button(action: {
print("Button tapped")
self.isPresented.toggle()
}) {
Text("LOGIN")
.font(.headline)
.foregroundColor(.white)
.padding()
.frame(width: 220, height: 60)
.background(Color.green)
.cornerRadius(15.0)
}
}.modalLink(isPresented: self.$isPresented, linkType: ModalTransition.fullScreenModal, destination: {
DestinationView()
})
}
}

enter image description here

关于ios - 不同 View 之间的 SwiftUI 导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60609086/

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