如何在SwiftUI的视图上按视图以点击手势?

时间:2019-11-10 13:24:55

标签: ios swift swiftui

我想在点击图像时按下视图。 到目前为止,我的代码:

struct Home: View {
    var body: some View {
        NavigationView {
            VStack {
                Image("image")
                    .onTapGesture {
                   //navigation code here
                }
                Text("Tap on image to find details")
            }
        }
    }
}

如何实现导航? 谢谢!

1 个答案:

答案 0 :(得分:0)

为什么不能使用以下标准的NavigationLink?

NavigationView {
    VStack {
        NavigationLink(destination: SomeDestinationViewHere()) {
            Image("image")
        }
        Text("Tap on image to find details")
    }
}