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()) } } } }