In the Integrating SwiftUI WWDC video it shows the example of using an IBSegueAction to transition to a SwiftUI view, is it possible to do this programmatically?
I have a SwiftUI app with a UIKit TableViewController (via UIViewControllerRepresentable), it's this table I'm looking to segue from to another SwiftUI view.
Essentially: SwiftUI TabView -> UIKit TableView -> SwiftUI View
Or will I need to setup storyboard to achieve this segue?