SwiftUI package to use custom views with NavigationLink.
SwiftUI-CustomNavigationLink allows you to use freely designed views with the build-in NavigationView. The CustomNavigationLink works like a button which navigates to the destination view.
https://github.com/laurensk/SwiftUI-CustomNavigationLink.git
import SwiftUI
import SwiftUICustomNavigationLink
struct ContentView: View {
var body: some View {
List {
CustomNavigationLink(destination: AnyView(Text("This is the destination"))) {
AnyView(YourCustomRowView())
}
}
}
}