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
Use the NavigationLink inside the button's label.
Button(action: { print("Floating Button Click") }, label: { NavigationLink(destination: AddItemView()) { Text("Open View") } })