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 don't know why all these answers are making this so complicated. In SwiftUI 2.0, you just add the button inside the navigation link!
NavigationLink(destination: TimerView()) { Text("Starten") }
You can apply SwiftUI styling to the Text object just as you would style any other element.
Text