I\'ve read a lot here about navigation in SwiftUI and tried a couple of things, but nothing is working as desired.
Basically, I have a view with a list of workouts and y
I think that the accurate way to do it is using buttonStyle, for example
buttonStyle
NavigationLink(destination: WorkoutDetail(workout: workout)) { WorkoutRow(workout: workout) } .buttonStyle(ButtonStyle3D(background: Color.yellow))